]> git.ipfire.org Git - people/ms/u-boot.git/blame - doc/README.ppc440
drivers, block: remove sil680 driver
[people/ms/u-boot.git] / doc / README.ppc440
CommitLineData
8bde7f77 1 PowerPC 440
c609719b 2
8bde7f77 3 Last Update: September 11, 2002
c609719b
WD
4=======================================================================
5
6
7OVERVIEW
8============
9
10Support for the ppc440 is contained in the cpu/ppc44x directory
11and enabled via the CONFIG_440 flag. It is largely based on the
12405gp code. A sample board support implementation is contained
13in the board/ebony directory.
14
0c8721a4 15All testing was performed using the AMCC Ebony board using both
c609719b
WD
16Rev B and Rev C silicon. However, since the Rev B. silicon has
17extensive errata, support for Rev B. is minimal (it boots, and
18features such as i2c, pci, tftpboot, etc. seem to work ok).
19The expectation is that all new board designs will be using
20Rev C or later parts -- if not, you may be in for a rough ride ;-)
21
22The ppc440 port does a fair job of keeping "board-specific" code
23out of the "cpu-specific" source. The goal of course was to
24provide mechanisms for each board to customize without having
25to clutter the cpu-specific source with a lot of ifdefs. Most
26of these mechanisms are described in the following sections.
27
28
29MEMORY MANAGEMENT
30=================
31
32The ppc440 doesn't run in "real mode". The MMU must be active
33at all times. Additionally, the 440 implements a 36-bit physical
34memory space that gets mapped into the PowerPC 32-bit virtual
35address space. So things like memory-mapped peripherals, etc must
36all be mapped in. Once this is done, the 32-bit virtual address
37space is then viewed as though it were physical memory.
38
39However, this means that memory, peripherals, etc can be configured
40to appear (mostly) anywhere in the virtual address space. Each board
41must define its own mappings using the tlbtab (see board/ebony/init.S).
42The actual TLB setup is performed by the cpu-specific code.
43
44Although each board is free to define its own mappings, there are
45several definitions to be aware of. These definitions may be used in
46the cpu-specific code (vs. board-specific code), so you should
47at least review these before deciding to make any changes ... it
48will probably save you some headaches ;-)
49
6d0f6bcf 50CONFIG_SYS_SDRAM_BASE - The virtual address where SDRAM is mapped (always 0)
c609719b 51
6d0f6bcf 52CONFIG_SYS_FLASH_BASE - The virtual address where FLASH is mapped.
c609719b 53
6d0f6bcf 54CONFIG_SYS_PCI_MEMBASE - The virtual address where PCI-bus memory is mapped.
c609719b
WD
55 This mapping provides access to PCI-bus memory.
56
6d0f6bcf 57CONFIG_SYS_PERIPHERAL_BASE - The virtual address where the 440 memory-mapped
c609719b
WD
58 peripherals are mapped. (e.g. -- UART registers, IIC registers, etc).
59
6d0f6bcf 60CONFIG_SYS_ISRAM_BASE - The virtual address where the 440 internal SRAM is
c609719b
WD
61 mapped. The internal SRAM is equivalent to 405gp OCM and is used
62 for the initial stack.
63
6d0f6bcf 64CONFIG_SYS_PCI_BASE - The virtual address where the 440 PCI-x bridge config
c609719b
WD
65 registers are mapped.
66
6d0f6bcf
JCPV
67CONFIG_SYS_PCI_TARGBASE - The PCI address that is mapped to the virtual address
68 defined by CONFIG_SYS_PCI_MEMBASE.
c609719b
WD
69
70
71UART / SERIAL
72=================
73
74The UART port works fine when an external serial clock is provided
75(like the one on the Ebony board) and when using internal clocking.
6d0f6bcf 76This is controlled with the CONFIG_SYS_EXT_SERIAL_CLOCK flag. When using
c609719b
WD
77internal clocking, the "ideal baud rate" settings in the 440GP
78user manual are automatically calculated.
79
c609719b
WD
80
81I2C
82=================
83
84The i2c utilities have been tested on both Rev B. and Rev C. and
0f89c54b 85look good. The 'i2c probe' command implementation has been updated to
c609719b
WD
86allow for 'skipped' addresses. Some i2c slaves are write only and
87cause problems when a probe (read) is performed (for example the
88CDCV850 clock controller at address 0x69 on the ebony board).
89
90To prevent probing certain addresses you can define the
6d0f6bcf 91CONFIG_SYS_I2C_NOPROBES macro in your board-specific header file. When
c609719b
WD
92defined, all specified addresses are skipped during a probe.
93The addresses that are skipped will be displayed in the output
0f89c54b 94of the 'i2c probe' command.
c609719b
WD
95
96For example, to prevent probing address 0x69, define the macro as
97follows:
98
6d0f6bcf 99#define CONFIG_SYS_I2C_NOPROBES {0x69}
c609719b
WD
100
101Similarly, to prevent probing addresses 0x69 and 0x70, define the
102macro a:
103
6d0f6bcf 104#define CONFIG_SYS_I2C_NOPROBES {0x69, 0x70}
c609719b
WD
105
106
107DDR SDRAM CONTROLLER
108====================
109
110SDRAM controller intialization using Serial Presence Detect (SPD) is
111now supported (thanks Jun). It is enabled by defining CONFIG_SPD_EEPROM.
112The i2c eeprom addresses are controlled by the SPD_EEPROM_ADDRESS macro.
113
114NOTE: The SPD_EEPROM_ADDRESS macro is defined differently than for other
115processors. Traditionally, it defined a single address. For the 440 it
116defines an array of addresses to support multiple banks. Address order
117is significant: the addresses are used in order to program the BankN
118registers. For example, two banks with i2c addresses of 0x53 (bank 0)
119and 0x52 (bank 1) would be defined as follows:
120
121#define SPD_EEPROM_ADDRESS {0x53,0x52}
122
123
124PCI-X BRIDGE
125====================
126
127PCI is an area that requires lots of flexibility since every board has
128its own set of constraints and configuration. This section describes the
129440 implementation.
130
131CPC0_STRP1[PISE] -- if the PISE strap bit is not asserted, PCI init
132is aborted and an indication is printed. This is NOT considered an
133error -- only an indication that PCI shouldn't be initialized. This
134gives you a chance to edit the i2c bootstrap eeproms using the i2c
135utilities once you get to the U-Boot command prompt. NOTE: the default
136440 bootstrap options (not using i2c eeprom) negates this bit.
137
138The cpu-specific code sets up a default pci_controller structure
139that maps in a single PCI I/O space and PCI memory space. The I/O
140space begins at PCI I/O address 0 and the PCI memory space is
6d0f6bcf 141256 MB starting at PCI address CONFIG_SYS_PCI_TARGBASE. After the
c609719b 142pci_controller structure is initialized, the cpu-specific code will
466fff1a
SR
143call the routine pci_pre_init(). This routine is implemented by
144board-specific code & is where the board can over-ride/extend the
145default pci_controller structure settings and exspecially provide
146a routine to map the PCI interrupts and do other pre-initialization
147tasks. If pci_pre_init() returns a value of zero, PCI initialization
148is aborted; otherwise the controller structure is registered and
149initialization continues.
c609719b
WD
150
151The default 440GP PCI target configuration is minimal -- it assumes that
152the strapping registers are set as necessary. Since the strapping bits
153provide very limited flexibility, you may want to customize the boards
6d0f6bcf 154target configuration. If CONFIG_SYS_PCI_TARGET_INIT is defined, the cpu-specific
c609719b
WD
155code will call the routine pci_target_init() which you must implement
156in your board-specific code.
157
158Target initialization is completed by the cpu-specific code by
159initializing the subsystem id and subsystem vendor id, and then ensuring
160that the 'enable host configuration' bit in the PCIX0_BRDGOPT2 is set.
161
162The default PCI master initialization maps in 256 MB of pci memory
6d0f6bcf 163starting at PCI address CONFIG_SYS_PCI_MEMBASE. To customize this, define
c609719b
WD
164PCI_MASTER_INIT. This will call the routine pci_master_init() in your
165board-specific code rather than performing the default master
166initialization.
167
168The decision to perform PCI host configuration must often be determined
169at run time. The ppc440 port differs from most other implementations in
170that it requires the board to determine its host configuration at run
171time rather than by using compile-time flags. This shouldn't create a
172large impact on the board-specific code since the board only needs to
173implement a single routine that returns a zero or non-zero value:
174is_pci_host().
175
176Justification for this becomes clear when considering systems running
177in a cPCI environment:
178
1791. Arbiter strapping: Many cPCI boards provide an external arbiter (often
180part of the PCI-to-PCI bridge). Even though the arbiter is external (the
181arbiter strapping is negated), the CPU may still be required to perform
182local PCI bus configuration.
183
1842. Host only: PPMC boards must sample the MONARCH# signal at run-time.
185Depending on the configuration of the carrier boar, the PPMC board must
186determine if it should configure the PCI bus at run-time. And in most
187cases, access to the MONARCH# signal is board-specific (e.g. via
188board-specific FPGA registers, etc).
189
190In any event, the is_pci_host() routine gives each board the opportunity
191to decide at run-time. If your board is always configured a certain way,
192then just hardcode a return of 1 or 0 as appropriate.
193
194
c609719b
WD
195Regards,
196--Scott
197<smcnutt@artesyncp.com>