]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/nhk8815.h
Merge remote-tracking branch 'u-boot-imx/master'
[karo-tx-uboot.git] / include / configs / nhk8815.h
1 /*
2  * (C) Copyright 2005
3  * STMicroelectronics.
4  * Configuration settings for the "Nomadik Hardware Kit" NHK-8815,
5  * the evaluation board for the Nomadik 8815 System on Chip.
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 #include <nomadik.h>
14
15 #define CONFIG_ARM926EJS
16 #define CONFIG_NOMADIK_8815     /* cpu variant */
17
18 #define CONFIG_SKIP_LOWLEVEL_INIT /* we have already been loaded to RAM */
19
20 /* commands */
21 #include <config_cmd_default.h>
22
23 #define CONFIG_CMD_NET
24 #define CONFIG_CMD_PING
25 #define CONFIG_CMD_DHCP
26 #define CONFIG_CMD_NFS
27 /* There is no NOR flash, so undefine these commands */
28 #undef CONFIG_CMD_FLASH
29 #undef CONFIG_CMD_IMLS
30 #define CONFIG_SYS_NO_FLASH
31 /* There is NAND storage */
32 #define CONFIG_NAND_NOMADIK
33 #define CONFIG_CMD_JFFS2
34
35 /* user interface */
36 #define CONFIG_SYS_LONGHELP
37 #define CONFIG_SYS_HUSH_PARSER
38 #define CONFIG_SYS_PROMPT               "Nomadik> "
39 #define CONFIG_CMDLINE_EDITING
40 #define CONFIG_SYS_CBSIZE               256     /* Console I/O Buffer Size */
41 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE \
42                                         + sizeof(CONFIG_SYS_PROMPT) + 16)
43 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE /* Boot Arg Buffer Size */
44 #define CONFIG_SYS_MAXARGS      16
45 #define CONFIG_SYS_LOAD_ADDR    0x800000        /* default load address */
46 #define CONFIG_SYS_LOADS_BAUD_CHANGE
47
48 /* boot config */
49 #define CONFIG_SETUP_MEMORY_TAGS
50 #define CONFIG_INITRD_TAG
51 #define CONFIG_CMDLINE_TAG
52 #define CONFIG_BOOTDELAY        1
53 #define CONFIG_BOOTARGS "root=/dev/ram0 console=ttyAMA1,115200n8 init=linuxrc"
54 #define CONFIG_BOOTCOMMAND      "fsload 0x100000 kernel.uimg;" \
55                                 " fsload 0x800000 initrd.gz.uimg;" \
56                                 " bootm 0x100000 0x800000"
57
58 /* memory-related information */
59 #define CONFIG_NR_DRAM_BANKS    2
60 #define PHYS_SDRAM_1            0x00000000      /* DDR-SDRAM Bank #1 */
61 #define PHYS_SDRAM_1_SIZE       0x04000000      /* 64 MB */
62 #define PHYS_SDRAM_2            0x08000000      /* SDR-SDRAM BANK #2*/
63 #define PHYS_SDRAM_2_SIZE       0x04000000      /* 64 MB */
64 #define CONFIG_SYS_SDRAM_BASE   PHYS_SDRAM_1
65 #define CONFIG_SYS_SDRAM_SIZE   (PHYS_SDRAM_1_SIZE + PHYS_SDRAM_2_SIZE)
66 /* The IPL loads us at 0, tell so to u-boot. Put stack pointer 1M into RAM */
67 #define CONFIG_SYS_TEXT_BASE    0x00000000
68 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + (1<<20))
69
70 #define CONFIG_SYS_MEMTEST_START        0x00000000
71 #define CONFIG_SYS_MEMTEST_END          0x0FFFFFFF
72 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 256 * 1024)
73
74 #define CONFIG_BOARD_LATE_INIT  /* call board_late_init during start up */
75
76 /* timing informazion */
77 #define CONFIG_SYS_TIMERBASE    0x101E2000
78
79 /* serial port (PL011) configuration */
80 #define CONFIG_PL011_SERIAL
81 #define CONFIG_CONS_INDEX       1
82 #define CONFIG_BAUDRATE         115200
83 #define CFG_SERIAL0             0x101FD000
84 #define CFG_SERIAL1             0x101FB000
85
86 #define CONFIG_PL01x_PORTS      { (void *)CFG_SERIAL0, (void *)CFG_SERIAL1 }
87 #define CONFIG_PL011_CLOCK      48000000
88
89 /* i2c, for the port extenders (uses gpio.c in board directory) */
90 #ifndef __ASSEMBLY__
91 #include <asm/arch/gpio.h>
92 #define CONFIG_CMD_I2C
93 #define CONFIG_SYS_I2C
94 #define CONFIG_SYS_I2C_SOFT     1       /* I2C bit-banged       */
95 #define I2C_SOFT_DEFS
96 #define CONFIG_SYS_I2C_SOFT_SPEED       400000
97 #define CONFIG_SYS_I2C_SOFT_SLAVE       0x7F
98 #define __SDA                   63
99 #define __SCL                   62
100 #define I2C_SDA(x)              nmk_gpio_set(__SDA, x)
101 #define I2C_SCL(x)              nmk_gpio_set(__SCL, x)
102 #define I2C_READ                (nmk_gpio_get(__SDA)!=0)
103 #define I2C_ACTIVE              nmk_gpio_dir(__SDA, 1)
104 #define I2C_TRISTATE            nmk_gpio_dir(__SDA, 0)
105 #define I2C_DELAY     (udelay(2))
106 #endif /* __ASSEMBLY__ */
107
108 /* Ethernet */
109 #define PCI_MEMORY_VADDR        0xe8000000
110 #define PCI_IO_VADDR            0xee000000
111 #define __io(a)                 ((void __iomem *)(PCI_IO_VADDR + (a)))
112 #define __mem_isa(a)            ((a) + PCI_MEMORY_VADDR)
113
114 #define CONFIG_SMC91111 /* Using SMC91c111*/
115 #define CONFIG_SMC91111_BASE    0x34000300
116 #undef  CONFIG_SMC91111_EXT_PHY /* Internal PHY */
117 #define CONFIG_SMC_USE_32_BIT
118 #define CONFIG_BOOTFILE         "uImage"
119
120 #define CONFIG_IP_DEFRAG        /* Allows faster download, TFTP and NFS */
121 #define CONFIG_TFTP_BLOCKSIZE   4096
122 #define CONFIG_NFS_READ_SIZE    4096
123
124 /* Storage information: onenand and nand */
125 #define CONFIG_CMD_ONENAND
126 #define CONFIG_MTD_ONENAND_VERIFY_WRITE
127 #define CONFIG_SYS_ONENAND_BASE         0x30000000
128
129 #define CONFIG_CMD_NAND
130 #define CONFIG_SYS_MAX_NAND_DEVICE      1
131 #define CONFIG_SYS_NAND_BASE            0x40000000 /* SMPS0n */
132
133 /*
134  * Filesystem information
135  *
136  * Since U-Boot has been loaded to RAM by vendor code, we could use
137  * either or both OneNand and Nand. However, we need to know where the
138  * filesystem lives. Comments below report vendor-selected partitions
139  */
140 #ifdef CONFIG_BOOT_ONENAND
141    /* Partition                         Size    Start
142     * XloaderTOC + X-Loader             256KB   0x00000000
143     * Memory init function              256KB   0x00040000
144     * U-Boot + env                      2MB     0x00080000
145     * Sysimage (kernel + ramdisk)       4MB     0x00280000
146     * JFFS2 Root filesystem             22MB    0x00680000
147     * JFFS2 User Data                   227.5MB 0x01C80000
148     */
149 #   define CONFIG_JFFS2_DEV             "onenand0"
150 #   define CONFIG_JFFS2_PART_SIZE       0x01600000
151 #   define CONFIG_JFFS2_PART_OFFSET     0x00680000
152 #   define CONFIG_ENV_IS_IN_ONENAND
153 #   define CONFIG_ENV_SIZE              0x20000 /* 128 Kb - one sector */
154 #   define CONFIG_ENV_ADDR              (0x00280000 - CONFIG_ENV_SIZE)
155
156 #else /*  BOOT_NAND */
157    /* Partition                         Size    Start
158     * XloaderTOC + X-Loader             256KB   0x00000000
159     * Memory init function              256KB   0x00040000
160     * U-Boot + env                      2MB     0x00080000
161     * Kernel Image                      3MB     0x00280000
162     * JFFS2 Root filesystem             22MB    0x00580000
163     * JFFS2 User Data                   100.5MB 0x01b80000
164     */
165 #   define CONFIG_JFFS2_DEV             "nand0"
166 #   define CONFIG_JFFS2_NAND            1 /* For the jffs2 support*/
167 #   define CONFIG_JFFS2_PART_SIZE       0x01600000
168 #   define CONFIG_JFFS2_PART_OFFSET     0x00580000
169 #   define CONFIG_ENV_IS_IN_NAND
170 #   define CONFIG_ENV_SIZE              0x20000 /* 128 Kb - one sector */
171 #   define CONFIG_ENV_OFFSET            (0x00280000 - CONFIG_ENV_SIZE)
172
173 #endif /* CONFIG_BOOT_ONENAND */
174
175 /* this is needed to make hello_world.c and other stuff happy */
176 #define CONFIG_SYS_MAX_FLASH_SECT       512
177 #define CONFIG_SYS_MAX_FLASH_BANKS      1
178
179 #endif /* __CONFIG_H */