mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-11 21:18:55 -04:00
powerpc/85xx: always implement the work-around for Erratum SATA_A001
On the P1022/P1013, the work-around for erratum SATA_A001 was implemented only if U-Boot initializes SATA, but SATA is not initialized by default. So move the work-around to the CPU initialization function, so that it's always executed on the SOCs that need it. Signed-off-by: Timur Tabi <timur@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
3e0529f742
commit
fbc20aab11
@ -37,12 +37,15 @@
|
|||||||
#include <asm/mmu.h>
|
#include <asm/mmu.h>
|
||||||
#include <asm/fsl_law.h>
|
#include <asm/fsl_law.h>
|
||||||
#include <asm/fsl_serdes.h>
|
#include <asm/fsl_serdes.h>
|
||||||
|
#include <linux/compiler.h>
|
||||||
#include "mp.h"
|
#include "mp.h"
|
||||||
#ifdef CONFIG_SYS_QE_FW_IN_NAND
|
#ifdef CONFIG_SYS_QE_FW_IN_NAND
|
||||||
#include <nand.h>
|
#include <nand.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "../../../../drivers/block/fsl_sata.h"
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
extern void srio_init(void);
|
extern void srio_init(void);
|
||||||
@ -301,6 +304,7 @@ __attribute__((weak, alias("__fsl_serdes__init"))) void fsl_serdes_init(void);
|
|||||||
*/
|
*/
|
||||||
int cpu_init_r(void)
|
int cpu_init_r(void)
|
||||||
{
|
{
|
||||||
|
__maybe_unused u32 svr = get_svr();
|
||||||
#ifdef CONFIG_SYS_LBC_LCRR
|
#ifdef CONFIG_SYS_LBC_LCRR
|
||||||
volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
|
volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
|
||||||
#endif
|
#endif
|
||||||
@ -316,10 +320,9 @@ int cpu_init_r(void)
|
|||||||
#if defined(CONFIG_L2_CACHE)
|
#if defined(CONFIG_L2_CACHE)
|
||||||
volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
|
volatile ccsr_l2cache_t *l2cache = (void *)CONFIG_SYS_MPC85xx_L2_ADDR;
|
||||||
volatile uint cache_ctl;
|
volatile uint cache_ctl;
|
||||||
uint svr, ver;
|
uint ver;
|
||||||
u32 l2siz_field;
|
u32 l2siz_field;
|
||||||
|
|
||||||
svr = get_svr();
|
|
||||||
ver = SVR_SOC_VER(svr);
|
ver = SVR_SOC_VER(svr);
|
||||||
|
|
||||||
asm("msync;isync");
|
asm("msync;isync");
|
||||||
@ -401,8 +404,8 @@ int cpu_init_r(void)
|
|||||||
puts("enabled\n");
|
puts("enabled\n");
|
||||||
}
|
}
|
||||||
#elif defined(CONFIG_BACKSIDE_L2_CACHE)
|
#elif defined(CONFIG_BACKSIDE_L2_CACHE)
|
||||||
if ((SVR_SOC_VER(get_svr()) == SVR_P2040) ||
|
if ((SVR_SOC_VER(svr) == SVR_P2040) ||
|
||||||
(SVR_SOC_VER(get_svr()) == SVR_P2040_E)) {
|
(SVR_SOC_VER(svr) == SVR_P2040_E)) {
|
||||||
puts("N/A\n");
|
puts("N/A\n");
|
||||||
goto skip_l2;
|
goto skip_l2;
|
||||||
}
|
}
|
||||||
@ -488,6 +491,32 @@ skip_l2:
|
|||||||
fman_enet_init();
|
fman_enet_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001)
|
||||||
|
/*
|
||||||
|
* For P1022/1013 Rev1.0 silicon, after power on SATA host
|
||||||
|
* controller is configured in legacy mode instead of the
|
||||||
|
* expected enterprise mode. Software needs to clear bit[28]
|
||||||
|
* of HControl register to change to enterprise mode from
|
||||||
|
* legacy mode. We assume that the controller is offline.
|
||||||
|
*/
|
||||||
|
if (IS_SVR_REV(svr, 1, 0) &&
|
||||||
|
((SVR_SOC_VER(svr) == SVR_P1022) ||
|
||||||
|
(SVR_SOC_VER(svr) == SVR_P1022_E) ||
|
||||||
|
(SVR_SOC_VER(svr) == SVR_P1013) ||
|
||||||
|
(SVR_SOC_VER(svr) == SVR_P1013_E))) {
|
||||||
|
fsl_sata_reg_t *reg;
|
||||||
|
|
||||||
|
/* first SATA controller */
|
||||||
|
reg = (void *)CONFIG_SYS_MPC85xx_SATA1_ADDR;
|
||||||
|
clrbits_le32(®->hcontrol, HCONTROL_ENTERPRISE_EN);
|
||||||
|
|
||||||
|
/* second SATA controller */
|
||||||
|
reg = (void *)CONFIG_SYS_MPC85xx_SATA2_ADDR;
|
||||||
|
clrbits_le32(®->hcontrol, HCONTROL_ENTERPRISE_EN);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,27 +197,6 @@ int init_sata(int dev)
|
|||||||
/* Wait the controller offline */
|
/* Wait the controller offline */
|
||||||
ata_wait_register(®->hstatus, HSTATUS_ONOFF, 0, 1000);
|
ata_wait_register(®->hstatus, HSTATUS_ONOFF, 0, 1000);
|
||||||
|
|
||||||
#if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001)
|
|
||||||
/*
|
|
||||||
* For P1022/1013 Rev1.0 silicon, after power on SATA host
|
|
||||||
* controller is configured in legacy mode instead of the
|
|
||||||
* expected enterprise mode. software needs to clear bit[28]
|
|
||||||
* of HControl register to change to enterprise mode from
|
|
||||||
* legacy mode.
|
|
||||||
*/
|
|
||||||
{
|
|
||||||
u32 svr = get_svr();
|
|
||||||
if (IS_SVR_REV(svr, 1, 0) &&
|
|
||||||
((SVR_SOC_VER(svr) == SVR_P1022) ||
|
|
||||||
(SVR_SOC_VER(svr) == SVR_P1022_E) ||
|
|
||||||
(SVR_SOC_VER(svr) == SVR_P1013) ||
|
|
||||||
(SVR_SOC_VER(svr) == SVR_P1013_E))) {
|
|
||||||
out_le32(®->hstatus, 0x20000000);
|
|
||||||
out_le32(®->hcontrol, 0x00000100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Set the command header base address to CHBA register to tell DMA */
|
/* Set the command header base address to CHBA register to tell DMA */
|
||||||
out_le32(®->chba, (u32)cmd_hdr & ~0x3);
|
out_le32(®->chba, (u32)cmd_hdr & ~0x3);
|
||||||
|
|
||||||
|
@ -103,6 +103,7 @@ typedef struct fsl_sata_reg {
|
|||||||
*/
|
*/
|
||||||
#define HCONTROL_ONOFF 0x80000000 /* Online or offline request */
|
#define HCONTROL_ONOFF 0x80000000 /* Online or offline request */
|
||||||
#define HCONTROL_FORCE_OFFLINE 0x40000000 /* Force offline request */
|
#define HCONTROL_FORCE_OFFLINE 0x40000000 /* Force offline request */
|
||||||
|
#define HCONTROL_ENTERPRISE_EN 0x10000000 /* Enterprise mode enabled */
|
||||||
#define HCONTROL_HDR_SNOOP 0x00000400 /* Command header snoop */
|
#define HCONTROL_HDR_SNOOP 0x00000400 /* Command header snoop */
|
||||||
#define HCONTROL_PMP_ATTACHED 0x00000200 /* Port multiplier attached */
|
#define HCONTROL_PMP_ATTACHED 0x00000200 /* Port multiplier attached */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user