xref: /rk3399_rockchip-uboot/include/configs/omap3_pandora.h (revision c7b9686d5d482c8e952598841ea467e6ec0ec0de)
1 /*
2  * (C) Copyright 2008-2010
3  * Gražvydas Ignotas <notasas@gmail.com>
4  *
5  * Configuration settings for the OMAP3 Pandora.
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12 
13 #define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
14 #define CONFIG_NAND
15 
16 /* override base for compatibility with MLO the device ships with */
17 #define CONFIG_SYS_TEXT_BASE		0x80008000
18 
19 #include <configs/ti_omap3_common.h>
20 
21 /*
22  * Display CPU and Board information
23  */
24 #define CONFIG_DISPLAY_CPUINFO		1
25 #define CONFIG_DISPLAY_BOARDINFO	1
26 
27 #define CONFIG_MISC_INIT_R
28 #define CONFIG_REVISION_TAG		1
29 
30 #define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB */
31 
32 #define CONFIG_SYS_CONSOLE_IS_IN_ENV	1
33 #define CONFIG_SYS_DEVICE_NULLDEV	1
34 
35 /*
36  * Hardware drivers
37  */
38 
39 /* I2C Support */
40 #define CONFIG_SYS_I2C_OMAP34XX
41 
42 /* TWL4030 LED */
43 #define CONFIG_TWL4030_LED
44 
45 /* Initialize GPIOs by default */
46 #define CONFIG_OMAP3_GPIO_4	/* GPIO96..127 is in GPIO Bank 4 */
47 #define CONFIG_OMAP3_GPIO_6	/* GPIO160..191 is in GPIO Bank 6 */
48 
49 /*
50  * NS16550 Configuration
51  */
52 #undef CONFIG_NS16550_SERIAL
53 #undef CONFIG_SYS_NS16550_CLK
54 #define CONFIG_SYS_NS16550_SERIAL
55 #define CONFIG_SYS_NS16550_REG_SIZE	(-4)
56 #define CONFIG_SYS_NS16550_CLK		V_NS16550_CLK
57 #define CONFIG_SYS_NS16550_COM3		OMAP34XX_UART3
58 #define CONFIG_SERIAL3			3
59 
60 /* commands to include */
61 #define CONFIG_CMD_CACHE	/* Cache control		*/
62 
63 /*
64  * Board NAND Info.
65  */
66 #define CONFIG_SYS_NAND_ADDR		NAND_BASE	/* physical address */
67 							/* to access nand */
68 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
69 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_HAM1_CODE_SW
70 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
71 #define CONFIG_SYS_NAND_OOBSIZE		64
72 
73 #ifdef CONFIG_NAND
74 #define CONFIG_CMD_UBI		/* UBI-formated MTD partition support */
75 #define CONFIG_CMD_UBIFS	/* Read-only UBI volume operations */
76 
77 #define CONFIG_RBTREE		/* required by CONFIG_CMD_UBI */
78 #define CONFIG_LZO		/* required by CONFIG_CMD_UBIFS */
79 
80 #define CONFIG_MTD_PARTITIONS	/* required for UBI partition support */
81 
82 #define MTDIDS_DEFAULT			"nand0=omap2-nand.0"
83 #define MTDPARTS_DEFAULT		"mtdparts=omap2-nand.0:512k(xloader),"\
84 					"1920k(uboot),128k(uboot-env),"\
85 					"10m(boot),-(rootfs)"
86 #else
87 #define MTDPARTS_DEFAULT
88 #endif
89 
90 #define CONFIG_EXTRA_ENV_SETTINGS \
91 	DEFAULT_LINUX_BOOT_ENV \
92 	"usbtty=cdc_acm\0" \
93 	"bootargs=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \
94 		"rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \
95 	"mtdparts=" MTDPARTS_DEFAULT "\0" \
96 
97 #define CONFIG_BOOTCOMMAND \
98 	"if mmc rescan && fatload mmc1 0 ${loadaddr} autoboot.scr || " \
99 			"ext2load mmc1 0 ${loadaddr} autoboot.scr; then " \
100 		"source ${loadaddr}; " \
101 	"fi; " \
102 	"ubi part boot && ubifsmount ubi:boot && " \
103 		"ubifsload ${loadaddr} uImage && bootm ${loadaddr}"
104 
105 /* memtest works on */
106 #define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
107 #define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + \
108 					0x01F00000) /* 31MB */
109 
110 #if defined(CONFIG_NAND)
111 #define CONFIG_SYS_FLASH_BASE		NAND_BASE
112 #endif
113 
114 /* Monitor at start of flash */
115 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE
116 
117 #define CONFIG_ENV_IS_IN_NAND		1
118 #define SMNAND_ENV_OFFSET		0x260000 /* environment starts here */
119 
120 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
121 #define CONFIG_ENV_OFFSET		SMNAND_ENV_OFFSET
122 #define CONFIG_ENV_ADDR			SMNAND_ENV_OFFSET
123 
124 #define CONFIG_SYS_CACHELINE_SIZE	64
125 
126 #endif				/* __CONFIG_H */
127