diff options
| author | Niklaus Giger <niklaus.giger@member.fsf.org> | 2009-10-04 20:04:20 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2009-10-07 09:15:20 +0200 | 
| commit | ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd (patch) | |
| tree | 5c390395480e4cfd575ef751edd34034eaffa142 /board/esd/pmc440/cmd_pmc440.c | |
| parent | f80e61dcfe53fa3a5936659883415c9bd1b5a3d9 (diff) | |
| download | olio-uboot-2014.01-ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd.tar.xz olio-uboot-2014.01-ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd.zip | |
ppc_4xx: Apply new HW register names
Modify all existing *.c files to use the new register names
as seen in the AMCC manuals.
Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/esd/pmc440/cmd_pmc440.c')
| -rw-r--r-- | board/esd/pmc440/cmd_pmc440.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/board/esd/pmc440/cmd_pmc440.c b/board/esd/pmc440/cmd_pmc440.c index 1af431bd7..476e94096 100644 --- a/board/esd/pmc440/cmd_pmc440.c +++ b/board/esd/pmc440/cmd_pmc440.c @@ -497,15 +497,15 @@ int do_pmm(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  		/* map PCI address at 0xc0000000 in PLB space */  		/* PMM1 Mask/Attribute - disabled b4 setting */ -		out32r(PCIX0_PMM1MA, 0x00000000); +		out32r(PCIL0_PMM1MA, 0x00000000);  		/* PMM1 Local Address */ -		out32r(PCIX0_PMM1LA, 0xc0000000); +		out32r(PCIL0_PMM1LA, 0xc0000000);  		/* PMM1 PCI Low Address */ -		out32r(PCIX0_PMM1PCILA, pciaddr); +		out32r(PCIL0_PMM1PCILA, pciaddr);  		/* PMM1 PCI High Address */ -		out32r(PCIX0_PMM1PCIHA, 0x00000000); +		out32r(PCIL0_PMM1PCIHA, 0x00000000);  		/* 256MB + No prefetching, and enable region */ -		out32r(PCIX0_PMM1MA, 0xf0000001); +		out32r(PCIL0_PMM1MA, 0xf0000001);  	} else {  		printf("Usage:\npmm %s\n", cmdtp->help);  	} |