Add "chip_config" command for PPC4xx bootstrap configuration
authorStefan Roese <sr@denx.de>
Mon, 20 Jul 2009 04:57:27 +0000 (06:57 +0200)
committerStefan Roese <sr@denx.de>
Fri, 24 Jul 2009 04:42:32 +0000 (06:42 +0200)
commit87c0b72908e05662b8b415e26e1042f4779629da
tree112d108a37a66affa421b000a882f3de18f913b0
parent10c1b218556ed9871f36bc0c407f4f2f6196353b
Add "chip_config" command for PPC4xx bootstrap configuration

This patch adds a generic command for programming I2C bootstrap
eeproms on PPC4xx. An implementation for Canyonlands board is
included.

The command name is intentionally chosen not to be PPC4xx specific.
This way other CPU's/SoC's can implement a similar command under
the same name, perhaps with a different syntax.

Usage on Canyonlands:

=> chip_config
Available configurations (I2C address 0x52):
600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
600-nand         - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
800-nor          - NOR  CPU: 800 PLB: 200 OPB: 100 EBC: 100
800-nand         - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
1000-nor         - NOR  CPU:1000 PLB: 200 OPB: 100 EBC: 100
1000-nand        - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
1066-nor         - NOR  CPU:1066 PLB: 266 OPB:  88 EBC:  88 ***
1066-nand        - NAND CPU:1066 PLB: 266 OPB:  88 EBC:  88
=> chip_config 600-nor
Using configuration:
600-nor          - NOR  CPU: 600 PLB: 200 OPB: 100 EBC: 100
done (dump via 'i2c md 52 0.1 10')
Reset the board for the changes to take effect

Other 4xx boards will be migrated to use this command soon
as well.

Signed-off-by: Stefan Roese <sr@denx.de>
Signed-off-by: Dirk Eibach <eibach@gdsys.de>
Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
board/amcc/canyonlands/Makefile
board/amcc/canyonlands/bootstrap.c [deleted file]
board/amcc/canyonlands/chip_config.c [new file with mode: 0644]
cpu/ppc4xx/Makefile
cpu/ppc4xx/cmd_chip_config.c [new file with mode: 0644]
include/asm-ppc/ppc4xx_config.h [new file with mode: 0644]
include/configs/canyonlands.h