]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/r2dplus.h
Merge branch 'asm-generic' of git://git.denx.de/u-boot-microblaze
[karo-tx-uboot.git] / include / configs / r2dplus.h
1 #ifndef __CONFIG_H
2 #define __CONFIG_H
3
4 #undef DEBUG
5
6 #define CONFIG_SH               1
7 #define CONFIG_SH4              1
8 #define CONFIG_CPU_SH7751       1
9 #define CONFIG_CPU_SH_TYPE_R    1
10 #define CONFIG_R2DPLUS          1
11 #define __LITTLE_ENDIAN__       1
12
13 /*
14  * Command line configuration.
15  */
16 #include <config_cmd_default.h>
17
18 #define CONFIG_CMD_DFL
19 #define CONFIG_CMD_CACHE
20 #define CONFIG_CMD_FLASH
21 #define CONFIG_CMD_PCI
22 #define CONFIG_CMD_NET
23 #define CONFIG_CMD_PING
24 #define CONFIG_CMD_IDE
25 #define CONFIG_CMD_EXT2
26 #define CONFIG_DOS_PARTITION
27
28 /* SCIF */
29 #define CONFIG_SCIF_CONSOLE     1
30 #define CONFIG_BAUDRATE         115200
31 #define CONFIG_CONS_SCIF1       1
32 #define BOARD_LATE_INIT         1
33
34 #define CONFIG_BOOTDELAY        -1
35 #define CONFIG_BOOTARGS         "console=ttySC0,115200"
36 #define CONFIG_ENV_OVERWRITE    1
37
38 /* SDRAM */
39 #define CONFIG_SYS_SDRAM_BASE           (0x8C000000)
40 #define CONFIG_SYS_SDRAM_SIZE           (0x04000000)
41
42 #define CONFIG_SYS_LONGHELP
43 #define CONFIG_SYS_PROMPT               "=> "
44 #define CONFIG_SYS_CBSIZE               256
45 #define CONFIG_SYS_PBSIZE               256
46 #define CONFIG_SYS_MAXARGS              16
47 #define CONFIG_SYS_BARGSIZE             512
48 /* List of legal baudrate settings for this board */
49 #define CONFIG_SYS_BAUDRATE_TABLE       { 115200, 57600, 38400, 19200, 9600 }
50
51 #define CONFIG_SYS_MEMTEST_START        (CONFIG_SYS_SDRAM_BASE)
52 #define CONFIG_SYS_MEMTEST_END          (TEXT_BASE - 0x100000)
53
54 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + 32 * 1024 * 1024)
55 /* Address of u-boot image in Flash */
56 #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE)
57 #define CONFIG_SYS_MONITOR_LEN          (256 * 1024)
58 /* Size of DRAM reserved for malloc() use */
59 #define CONFIG_SYS_MALLOC_LEN           (1024 * 1024)
60 /* size in bytes reserved for initial data */
61 #define CONFIG_SYS_GBL_DATA_SIZE        (256)
62 #define CONFIG_SYS_BOOTMAPSZ            (8 * 1024 * 1024)
63
64 /*
65  * NOR Flash ( Spantion S29GL256P )
66  */
67 #define CONFIG_SYS_FLASH_CFI
68 #define CONFIG_FLASH_CFI_DRIVER
69 #define CONFIG_SYS_FLASH_BASE           (0xA0000000)
70 #define CONFIG_SYS_MAX_FLASH_BANKS (1)
71 #define CONFIG_SYS_MAX_FLASH_SECT  256
72 #define CONFIG_SYS_FLASH_BANKS_LIST     { CONFIG_SYS_FLASH_BASE }
73
74 #define CONFIG_ENV_IS_IN_FLASH
75 #define CONFIG_ENV_SECT_SIZE    0x40000
76 #define CONFIG_ENV_SIZE        (CONFIG_ENV_SECT_SIZE)
77 #define CONFIG_ENV_ADDR        (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
78
79 /*
80  * SuperH Clock setting
81  */
82 #define CONFIG_SYS_CLK_FREQ     60000000
83 #define CONFIG_SYS_TMU_CLK_DIV          4
84 #define CONFIG_SYS_HZ           1000
85 #define CONFIG_SYS_PLL_SETTLING_TIME    100/* in us */
86
87 /*
88  * IDE support
89  */
90 #define CONFIG_IDE_RESET        1
91 #define CONFIG_SYS_PIO_MODE             1
92 #define CONFIG_SYS_IDE_MAXBUS           1 /* IDE bus */
93 #define CONFIG_SYS_IDE_MAXDEVICE        1
94 #define CONFIG_SYS_ATA_BASE_ADDR        0xb4000000
95 #define CONFIG_SYS_ATA_STRIDE           2 /* 1bit shift */
96 #define CONFIG_SYS_ATA_DATA_OFFSET      0x1000  /* data reg offset */
97 #define CONFIG_SYS_ATA_REG_OFFSET       0x1000  /* reg offset */
98 #define CONFIG_SYS_ATA_ALT_OFFSET       0x800   /* alternate register offset */
99
100 /*
101  * SuperH PCI Bridge Configration
102  */
103 #define CONFIG_PCI
104 #define CONFIG_SH4_PCI
105 #define CONFIG_SH7751_PCI
106 #define CONFIG_PCI_PNP
107 #define CONFIG_PCI_SCAN_SHOW    1
108 #define __io
109 #define __mem_pci
110
111 #define CONFIG_PCI_MEM_BUS      0xFD000000      /* Memory space base addr */
112 #define CONFIG_PCI_MEM_PHYS     CONFIG_PCI_MEM_BUS
113 #define CONFIG_PCI_MEM_SIZE     0x01000000      /* Size of Memory window */
114 #define CONFIG_PCI_IO_BUS       0xFE240000      /* IO space base address */
115 #define CONFIG_PCI_IO_PHYS      CONFIG_PCI_IO_BUS
116 #define CONFIG_PCI_IO_SIZE      0x00040000      /* Size of IO window */
117 #define CONFIG_PCI_SYS_BUS      (CONFIG_SYS_SDRAM_BASE & 0x1fffffff)
118 #define CONFIG_PCI_SYS_PHYS     (CONFIG_SYS_SDRAM_BASE & 0x1fffffff)
119 #define CONFIG_PCI_SYS_SIZE     CONFIG_SYS_SDRAM_SIZE
120
121 /*
122  * Network device (RTL8139) support
123  */
124 #define CONFIG_NET_MULTI
125 #define CONFIG_RTL8139
126
127 #endif /* __CONFIG_H */