Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 1 | |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 2 | U-Boot for Renesas SuperH |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 3 | Last update 01/18/2008 by Nobuhiro Iwamatsu |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 4 | |
| 5 | ================================================================================ |
| 6 | 0. What's this? |
| 7 | This file contains status information for the port of U-Boot to the |
| 8 | Renesas SuperH series of CPUs. |
| 9 | |
| 10 | ================================================================================ |
| 11 | 1. Overview |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 12 | SuperH has an original boot loader. However, source code is dirty, and |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 13 | maintenance is not done. |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 14 | To improve sharing and the maintenance of the code, Nobuhiro Iwamatsu |
| 15 | started the porting to u-boot in 2007. |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 16 | |
| 17 | ================================================================================ |
| 18 | 2. Supported CPUs |
| 19 | |
| 20 | 2.1. Renesas SH7750/SH7750R |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 21 | This CPU has the SH4 core. |
| 22 | |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 23 | 2.2. Renesas SH7722 |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 24 | This CPU has the SH4AL-DSP core. |
| 25 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 26 | 2.3. Renesas SH7780 |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 27 | This CPU has the SH4A core. |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 28 | |
| 29 | ================================================================================ |
| 30 | 3. Supported Boards |
| 31 | |
| 32 | 3.1. Hitachi UL MS7750SE01/MS7750RSE01 |
| 33 | Board specific code is in board/ms7750se |
| 34 | To use this board, type "make ms7750se_config". |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 35 | Support devices are : |
| 36 | - SCIF |
| 37 | - SDRAM |
| 38 | - NOR Flash |
| 39 | - Marubun PCMCIA |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 40 | |
| 41 | 3.2. Hitachi UL MS7722SE01 |
| 42 | Board specific code is in board/ms7722se |
| 43 | To use this board, type "make ms7722se_config". |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 44 | Support devices are : |
| 45 | - SCIF |
| 46 | - SDRAM |
| 47 | - NOR Flash |
| 48 | - Marubun PCMCIA |
| 49 | - SMC91x ethernet |
| 50 | |
| 51 | 3.2. Hitachi UL MS7720ERP01 |
| 52 | Board specific code is in board/ms7720se |
| 53 | To use this board, type "make ms7720se_config". |
| 54 | Support devices are : |
| 55 | - SCIF |
| 56 | - SDRAM |
| 57 | - NOR Flash |
| 58 | - Marubun PCMCIA |
| 59 | |
| 60 | 3.3. Renesas R7780MP |
| 61 | Board specific code is in board/r7780mp |
| 62 | To use this board, type "make r7780mp_config". |
| 63 | Support devices are : |
| 64 | - SCIF |
| 65 | - DDR-SDRAM |
| 66 | - NOR Flash |
| 67 | - Compact Flash |
| 68 | - ASIX ethernet |
| 69 | - SH7780 PCI bridge |
| 70 | - RTL8110 ethernet |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 71 | |
| 72 | ** README ** |
| 73 | In SuperH, S-record and binary of made u-boot work on the memory. |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 74 | When u-boot is written in the flash, it is necessary to change the |
| 75 | address by using 'objcopy'. |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 76 | ex) shX-linux-objcopy -Ibinary -Osrec u-boot.bin u-boot.flash.srec |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 77 | |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 78 | ================================================================================ |
| 79 | 4. Compiler |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 80 | You can use the following of u-boot to compile. |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 81 | - SuperH Linux Open site |
| 82 | http://www.superh-linux.org/ |
| 83 | - KPIT GNU tools |
| 84 | http://www.kpitgnutools.com/ |
| 85 | |
| 86 | ================================================================================ |
| 87 | 5. Future |
| 88 | I plan to support the following CPUs and boards. |
| 89 | 5.1. CPUs |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 90 | - SH7751R(SH4) |
Wolfgang Denk | 61fb15c5 | 2007-12-27 01:52:50 +0100 | [diff] [blame] | 91 | |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 92 | 5.2. Boards |
| 93 | - Many boards ;-) |
| 94 | |
| 95 | ================================================================================ |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 96 | Copyright (c) 2007,2008 |
Nobuhiro Iwamatsu | 1300808 | 2007-11-25 02:51:17 +0900 | [diff] [blame] | 97 | Nobuhiro Iwamatsu <iwamatsu@nigaur.org> |