1cdd7d5ec40befe6d82d1169c8a3fddefb6a159b
[platform/kernel/u-boot.git] / include / configs / nokia_rx51.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2011-2012
4  * Pali Rohár <pali@kernel.org>
5  *
6  * (C) Copyright 2010
7  * Alistair Buxton <a.j.buxton@gmail.com>
8  *
9  * Derived from Beagle Board code:
10  * (C) Copyright 2006-2008
11  * Texas Instruments.
12  * Richard Woodruff <r-woodruff2@ti.com>
13  * Syed Mohammed Khasim <x0khasim@ti.com>
14  *
15  * Configuration settings for the Nokia RX-51 aka N900.
16  */
17
18 #ifndef __CONFIG_H
19 #define __CONFIG_H
20
21 /*
22  * High Level Configuration Options
23  */
24 #define CONFIG_SYS_L2CACHE_OFF          /* pretend there is no L2 CACHE */
25
26 #define CONFIG_MACH_TYPE                MACH_TYPE_NOKIA_RX51
27
28 #include <asm/arch/cpu.h>               /* get chip and board defs */
29 #include <asm/arch/omap.h>
30 #include <asm/arch/mem.h>
31 #include <linux/stringify.h>
32
33 /* Clock Defines */
34 #define V_OSCK                  26000000        /* Clock output from T2 */
35 #define V_SCLK                  (V_OSCK >> 1)
36
37 #define CONFIG_CMDLINE_TAG      /* enable passing kernel command line string */
38 #define CONFIG_INITRD_TAG                       /* enable passing initrd */
39 #define CONFIG_REVISION_TAG                     /* enable passing revision tag*/
40 #define CONFIG_SETUP_MEMORY_TAGS                /* enable memory tag */
41
42 /*
43  * Size of malloc() pool
44  */
45 #define CONFIG_UBI_SIZE                 (512 << 10)
46 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + CONFIG_UBI_SIZE + \
47                                         (128 << 10))
48
49 /*
50  * Hardware drivers
51  */
52
53 /*
54  * NS16550 Configuration
55  */
56 #define V_NS16550_CLK           48000000                /* 48MHz (APLL96/2) */
57
58 #define CONFIG_SYS_NS16550_SERIAL
59 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
60 #define CONFIG_SYS_NS16550_CLK          V_NS16550_CLK
61
62 /*
63  * select serial console configuration
64  */
65 #define CONFIG_SYS_NS16550_COM3         OMAP34XX_UART3
66
67 #define CONFIG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 }
68
69 /* USB device configuration */
70 #define CONFIG_USB_DEVICE
71 #define CONFIG_USB_TTY
72 #define CONFIG_USBD_VENDORID            0x0421
73 #define CONFIG_USBD_PRODUCTID_CDCACM    0x01c8
74 #define CONFIG_USBD_PRODUCTID_GSERIAL   0x01c8
75 #define CONFIG_USBD_MANUFACTURER        "Nokia"
76 #define CONFIG_USBD_PRODUCT_NAME        "N900 (U-Boot)"
77
78 #define GPIO_SLIDE                      71
79
80 /*
81  * Board ONENAND Info.
82  */
83
84 #define CONFIG_SYS_ONENAND_BASE         ONENAND_MAP
85
86 /*
87  * Framebuffer
88  */
89 /* Video console */
90 #define CONFIG_VIDEO_LOGO
91 #define VIDEO_FB_16BPP_PIXEL_SWAP
92 #define VIDEO_FB_16BPP_WORD_SWAP
93
94 /* functions for cfb_console */
95 #define VIDEO_KBD_INIT_FCT              rx51_kp_init()
96 #define VIDEO_TSTC_FCT                  rx51_kp_tstc
97 #define VIDEO_GETC_FCT                  rx51_kp_getc
98 #ifndef __ASSEMBLY__
99 struct stdio_dev;
100 int rx51_kp_init(void);
101 int rx51_kp_tstc(struct stdio_dev *sdev);
102 int rx51_kp_getc(struct stdio_dev *sdev);
103 #endif
104
105 /* Environment information */
106 #define CONFIG_EXTRA_ENV_SETTINGS \
107         "usbtty=cdc_acm\0" \
108         "stdin=usbtty,serial,vga\0" \
109         "stdout=usbtty,serial,vga\0" \
110         "stderr=usbtty,serial,vga\0" \
111         "slide=gpio input " __stringify(GPIO_SLIDE) "\0" \
112         "switchmmc=mmc dev ${mmcnum}\0" \
113         "kernaddr=0x82008000\0" \
114         "initrdaddr=0x84008000\0" \
115         "scriptaddr=0x86008000\0" \
116         "fileload=${mmctype}load mmc ${mmcnum}:${mmcpart} " \
117                 "${loadaddr} ${mmcfile}\0" \
118         "kernload=setenv loadaddr ${kernaddr};" \
119                 "setenv mmcfile ${mmckernfile};" \
120                 "run fileload\0" \
121         "initrdload=setenv loadaddr ${initrdaddr};" \
122                 "setenv mmcfile ${mmcinitrdfile};" \
123                 "run fileload\0" \
124         "scriptload=setenv loadaddr ${scriptaddr};" \
125                 "setenv mmcfile ${mmcscriptfile};" \
126                 "run fileload\0" \
127         "scriptboot=echo Running ${mmcscriptfile} from mmc " \
128                 "${mmcnum}:${mmcpart} ...; source ${scriptaddr}\0" \
129         "kernboot=echo Booting ${mmckernfile} from mmc " \
130                 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr} || " \
131                         "bootz ${kernaddr}\0" \
132         "kerninitrdboot=echo Booting ${mmckernfile} ${mmcinitrdfile} from mmc "\
133                 "${mmcnum}:${mmcpart} ...; bootm ${kernaddr} ${initrdaddr} || " \
134                         "bootz ${kernaddr} ${initrdaddr}\0" \
135         "attachboot=echo Booting attached kernel image ...;" \
136                 "setenv setup_omap_atag 1;" \
137                 "bootm ${attkernaddr} || bootz ${attkernaddr};" \
138                 "setenv setup_omap_atag\0" \
139         "trymmcscriptboot=run switchmmc && run scriptload && run scriptboot\0" \
140         "trymmckernboot=run switchmmc && run kernload && run kernboot\0" \
141         "trymmckerninitrdboot=run switchmmc && run initrdload && " \
142                 "run kernload && run kerninitrdboot\0" \
143         "trymmcpartboot=setenv mmcscriptfile boot.scr; run trymmcscriptboot;" \
144                 "setenv mmckernfile uImage; run trymmckernboot;" \
145                 "setenv mmckernfile zImage; run trymmckernboot\0" \
146         "trymmcallpartboot=setenv mmcpart 1; run trymmcpartboot;" \
147                 "setenv mmcpart 2; run trymmcpartboot;" \
148                 "setenv mmcpart 3; run trymmcpartboot;" \
149                 "setenv mmcpart 4; run trymmcpartboot\0" \
150         "trymmcboot=if run switchmmc; then " \
151                         "setenv mmctype fat;" \
152                         "run trymmcallpartboot;" \
153                         "setenv mmctype ext4;" \
154                         "run trymmcallpartboot;" \
155                 "fi\0" \
156         "emmcboot=setenv mmcnum 1; run trymmcboot\0" \
157         "sdboot=setenv mmcnum 0; run trymmcboot\0" \
158         "trymmcbootmenu=setenv mmctype fat && run trymmcscriptboot || " \
159                 "setenv mmctype ext4 && run trymmcscriptboot\0" \
160         "preboot=setenv mmcpart 1; setenv mmcscriptfile bootmenu.scr;" \
161                 "setenv mmcnum 0 && run trymmcbootmenu || " \
162                 "setenv mmcnum 1 && run trymmcbootmenu;" \
163                 "if run slide; then true; else " \
164                         "setenv bootmenu_delay 0;" \
165                         "setenv bootdelay 0;" \
166                 "fi\0" \
167         "menucmd=bootmenu\0" \
168         "bootmenu_0=Attached kernel=run attachboot\0" \
169         "bootmenu_1=Internal eMMC=run emmcboot\0" \
170         "bootmenu_2=External SD card=run sdboot\0" \
171         "bootmenu_3=U-Boot boot order=boot\0" \
172         "bootmenu_delay=30\0" \
173         ""
174
175 #define CONFIG_POSTBOOTMENU \
176         "echo;" \
177         "echo Extra commands:;" \
178         "echo run sdboot - Boot from SD card slot.;" \
179         "echo run emmcboot - Boot internal eMMC memory.;" \
180         "echo run attachboot - Boot attached kernel image.;" \
181         "echo"
182
183 #define CONFIG_BOOTCOMMAND \
184         "run sdboot;" \
185         "run emmcboot;" \
186         "run attachboot;" \
187         "echo"
188
189 /*
190  * OMAP3 has 12 GP timers, they can be driven by the system clock
191  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
192  * This rate is divided by a local divisor.
193  */
194 #define CONFIG_SYS_TIMERBASE            (OMAP34XX_GPT2)
195 #define CONFIG_SYS_PTV                  2       /* Divisor: 2^(PTV+1) => 8 */
196
197 /*
198  * Physical Memory Map
199  */
200 #define PHYS_SDRAM_1                    OMAP34XX_SDRC_CS0
201
202 /*
203  * FLASH and environment organization
204  */
205
206 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
207 #define CONFIG_SYS_INIT_RAM_ADDR        0x4020f800
208 #define CONFIG_SYS_INIT_RAM_SIZE        0x800
209 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
210                         CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
211
212 /*
213  * Attached kernel image
214  */
215
216 #define SDRAM_SIZE                      0x10000000      /* 256 MB */
217 #define SDRAM_END                       (CONFIG_SYS_SDRAM_BASE + SDRAM_SIZE)
218
219 #define IMAGE_MAXSIZE                   0x1FF800        /* 2 MB - 2 kB */
220 #define KERNEL_OFFSET                   0x40000         /* 256 kB */
221 #define KERNEL_MAXSIZE                  (IMAGE_MAXSIZE-KERNEL_OFFSET)
222 #define KERNEL_ADDRESS                  (SDRAM_END-KERNEL_MAXSIZE)
223
224 /* Reserve protected RAM for attached kernel */
225 #define CONFIG_PRAM                     ((KERNEL_MAXSIZE >> 10)+1)
226
227 #endif /* __CONFIG_H */