Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 1 | |
| 2 | |
| 3 | U-Boot for Wind River SBC834x Boards |
| 4 | ==================================== |
| 5 | |
| 6 | |
| 7 | The Wind River SBC834x board is a 6U form factor (not CPCI) reference |
| 8 | design that uses the MPC8347E or MPC8349E processor. U-Boot support |
| 9 | for this board is heavily based on the existing U-Boot support for |
| 10 | Freescale MPC8349 reference boards. |
| 11 | |
| 12 | Support has been primarily tested on the SBC8349 version of the board, |
| 13 | although earlier versions were also tested on the SBC8347. The primary |
| 14 | difference in the two is the level of PCI functionality. |
| 15 | |
| 16 | http://www.windriver.com/products/OCD/SBC8347E_49E/ |
| 17 | |
| 18 | |
| 19 | Flash Details: |
| 20 | ============== |
| 21 | |
| 22 | The flash type is intel 28F640Jx (4096x16) [one device]. Base address |
| 23 | is 0xFF80_0000 which is also where the Hardware Reset Configuration |
Paul Gortmaker | fe613cd | 2009-07-23 17:10:55 -0400 | [diff] [blame] | 24 | Word (HRCW) is stored. Caution should be used to not reset the |
| 25 | board without having a valid HRCW in place (i.e. erased flash) as |
| 26 | then a Wind River ICE will be required to restore the HRCW and flash |
| 27 | image. |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 28 | |
| 29 | |
| 30 | Restoring a corrupted or missing flash image: |
| 31 | ============================================= |
| 32 | |
Paul Gortmaker | fe613cd | 2009-07-23 17:10:55 -0400 | [diff] [blame] | 33 | Note that U-boot versions up to and including 2009.06 had essentially |
| 34 | two copies of u-boot in flash; one at the very beginning, which set |
| 35 | the HRCW, and one at the very end, which was the image that was run. |
| 36 | As of this point in time, the two have been combined into just one |
| 37 | at the beginning of flash, which provides both the HRCW, and the image |
| 38 | that is executed. This frees up the remainder of flash for other uses. |
| 39 | Use of the u-boot command "fli" will indicate what parts are in use. |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 40 | Details for storing U-boot to flash using a Wind River ICE can be found |
| 41 | on page 19 of the board manual (request ERG-00328-001). The following |
| 42 | is a summary of that information: |
| 43 | |
| 44 | - Connect ICE and establish connection to it from WorkBench/OCD. |
| 45 | - Ensure you have background mode (BKM) in the OCD terminal window. |
| 46 | - Select the appropriate flash type (listed above) |
| 47 | - Prepare a u-boot image by using the Wind River Convert utility; |
| 48 | by using "Convert and Add file" on the ELF file from your build. |
Paul Gortmaker | fe613cd | 2009-07-23 17:10:55 -0400 | [diff] [blame] | 49 | Convert from FF80_0000 to FFFF_FFFF (or to FF83_FFFF if you are |
| 50 | trying to preserve your old environment settings and user flash). |
| 51 | - Set the start address of the erase/flash process to FF80_0000 |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 52 | - Set the target RAM required to 64kB. |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 53 | - Select sectors for erasing (see note on environment below) |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 54 | - Select Erase and Reprogram. |
| 55 | |
| 56 | Note that some versions of the register files used with Workbench |
| 57 | would zero some TSEC registers, which inhibits ethernet operation |
| 58 | by u-boot when this register file is played to the target. Using |
| 59 | "INN" in the OCD terminal window instead of "IN" before the "GO" |
| 60 | will not play the register file, and allow u-boot to use the TSEC |
| 61 | interface while executed from the ICE "GO" command. |
| 62 | |
| 63 | Alternatively, you can locate the register file which will be named |
| 64 | WRS_SBC8349_PCT00328001.reg or similar) and "REM" out all the lines |
| 65 | beginning with "SCGA TSEC1" and "SCGA TSEC2". This allows you to |
| 66 | use all the remaining register file content. |
| 67 | |
| 68 | If you wish to preserve your prior U-Boot environment settings, |
Paul Gortmaker | fe613cd | 2009-07-23 17:10:55 -0400 | [diff] [blame] | 69 | then convert (and erase to) 0xFF83FFFF instead of 0xFFFFFFFF. |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 70 | The size for converting (and erasing) must be at least as large |
| 71 | as u-boot.bin. |
| 72 | |
| 73 | |
| 74 | Updating U-Boot with U-Boot: |
| 75 | ============================ |
| 76 | |
| 77 | This procedure is very similar to other boards that have u-boot installed. |
| 78 | Assuming that the network has been configured, and that the new u-boot.bin |
| 79 | has been copied to the TFTP server, the commands are: |
| 80 | |
| 81 | tftp 200000 u-boot.bin |
| 82 | protect off all |
Paul Gortmaker | fe613cd | 2009-07-23 17:10:55 -0400 | [diff] [blame] | 83 | erase ff800000 ff83ffff |
| 84 | cp.b 200000 ff800000 40000 |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 85 | protect on all |
| 86 | |
Paul Gortmaker | fe613cd | 2009-07-23 17:10:55 -0400 | [diff] [blame] | 87 | You may wish to do a "md ff800000 20" operation as a prefix and postfix |
| 88 | to the above steps to inspect/compare the HRCW before/after as an extra |
| 89 | safety check before resetting the board upon completion of the reflash. |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 90 | |
| 91 | PCI: |
| 92 | ==== |
| 93 | |
Paul Gortmaker | c0d660f | 2009-08-21 16:21:58 -0500 | [diff] [blame] | 94 | There are three configuration choices: |
| 95 | sbc8349_config |
| 96 | sbc8349_PCI_33_config |
| 97 | sbc8349_PCI_66_config |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 98 | |
Paul Gortmaker | c0d660f | 2009-08-21 16:21:58 -0500 | [diff] [blame] | 99 | The 1st does not enable CONFIG_PCI, and assumes that the PCI slot |
| 100 | will be left empty (M66EN high), and so the board will operate with |
| 101 | a base clock of 66MHz. Note that you need both PCI enabled in u-boot |
| 102 | and linux in order to have functional PCI under linux. The only |
| 103 | reason for choosing to not enable PCI would be if you had a very |
| 104 | early (rev 1.0) CPU with possible PCI issues. |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 105 | |
Paul Gortmaker | c0d660f | 2009-08-21 16:21:58 -0500 | [diff] [blame] | 106 | The second enables PCI support and builds for a 33MHz clock rate. Note |
| 107 | that if a 33MHz 32bit card is inserted in the slot, then the whole board |
| 108 | will clock down to a 33MHz base clock instead of the default 66MHz. This |
| 109 | will change the baud clocks and mess up your serial console output if you |
| 110 | were previously running at 66MHz. If you want to use a 33MHz PCI card, |
| 111 | then you should build a U-Boot with sbc8349_PCI_33_config and store this |
| 112 | to flash prior to powering down the board and inserting the 33MHz PCI |
| 113 | card. |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 114 | |
Paul Gortmaker | c0d660f | 2009-08-21 16:21:58 -0500 | [diff] [blame] | 115 | The third option builds PCI support in, and leaves the clocking at the |
| 116 | default 66MHz. This has been tested with an intel PCI-X e1000 card. |
| 117 | This is also the appropriate choice for people with a recent (non 1.0) |
| 118 | CPU who currently have the PCI slot physically empty, but intend to |
| 119 | possibly add a PCI-X card at a later date. |
| 120 | |
| 121 | => pci |
| 122 | Scanning PCI devices on bus 0 |
| 123 | BusDevFun VendorId DeviceId Device Class Sub-Class |
| 124 | _____________________________________________________________ |
| 125 | 00.00.00 0x1957 0x0080 Processor 0x20 |
| 126 | 00.11.00 0x8086 0x1026 Network controller 0x00 |
| 127 | => |