spi, mpc8xx: Take parameter RAM relocation into account
Instead of inhibiting parameter RAM relocation, take it into account. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
This commit is contained in:
parent
e7930e93cc
commit
14e64c1801
1 changed files with 4 additions and 2 deletions
|
@ -52,10 +52,12 @@ static int mpc8xx_spi_probe(struct udevice *dev)
|
|||
immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
|
||||
cpm8xx_t __iomem *cp = &immr->im_cpm;
|
||||
spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dpmem[PROFF_SPI];
|
||||
u16 spi_rpbase;
|
||||
cbd_t __iomem *tbdf, *rbdf;
|
||||
|
||||
/* Disable relocation */
|
||||
out_be16(&spi->spi_rpbase, 0x1d80);
|
||||
spi_rpbase = in_be16(&spi->spi_rpbase);
|
||||
if (spi_rpbase)
|
||||
spi = (spi_t __iomem *)&cp->cp_dpmem[spi_rpbase];
|
||||
|
||||
/* 1 */
|
||||
/* Initialize the parameter ram.
|
||||
|
|
Loading…
Reference in a new issue