Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 2 | /* |
Grazvydas Ignotas | 7322524 | 2010-11-19 11:25:36 -0500 | [diff] [blame] | 3 | * (C) Copyright 2008-2010 |
| 4 | * GraÅžvydas Ignotas <notasas@gmail.com> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 5 | * |
| 6 | * Configuration settings for the OMAP3 Pandora. |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __CONFIG_H |
| 10 | #define __CONFIG_H |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 11 | |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 12 | /* override base for compatibility with MLO the device ships with */ |
Vaibhav Hiremath | cae377b | 2010-06-07 15:20:34 -0400 | [diff] [blame] | 13 | |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 14 | #include <configs/ti_omap3_common.h> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 15 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 16 | #define CONFIG_REVISION_TAG 1 |
| 17 | |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 18 | #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 19 | |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 20 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 21 | |
| 22 | /* |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 23 | * Board NAND Info. |
| 24 | */ |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 25 | #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_SW |
| 26 | #define CONFIG_SYS_NAND_PAGE_SIZE 2048 |
| 27 | #define CONFIG_SYS_NAND_OOBSIZE 64 |
Grazvydas Ignotas | 7322524 | 2010-11-19 11:25:36 -0500 | [diff] [blame] | 28 | |
Vagrant Cascadian | 40abfee | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 29 | |
| 30 | #define CONFIG_BOOTCOMMAND \ |
| 31 | "run distro_bootcmd; " \ |
Vagrant Cascadian | db18a24 | 2016-08-30 13:16:32 -0700 | [diff] [blame] | 32 | "setenv bootargs ${bootargs_ubi}; " \ |
Vagrant Cascadian | 40abfee | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 33 | "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \ |
| 34 | "source ${loadaddr}; " \ |
| 35 | "fi; " \ |
| 36 | "ubi part boot && ubifsmount ubi:boot && " \ |
| 37 | "ubifsload ${loadaddr} uImage && bootm ${loadaddr}" |
| 38 | |
| 39 | #define BOOT_TARGET_DEVICES(func) \ |
| 40 | func(MMC, mmc, 0) \ |
| 41 | |
| 42 | #include <config_distro_bootcmd.h> |
| 43 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 44 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 45 | DEFAULT_LINUX_BOOT_ENV \ |
Grazvydas Ignotas | 7322524 | 2010-11-19 11:25:36 -0500 | [diff] [blame] | 46 | "usbtty=cdc_acm\0" \ |
Vagrant Cascadian | db18a24 | 2016-08-30 13:16:32 -0700 | [diff] [blame] | 47 | "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \ |
Grazvydas Ignotas | 9baa37b | 2012-03-22 13:49:23 +0000 | [diff] [blame] | 48 | "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \ |
Tom Rini | 43ede0b | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 49 | "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ |
Vagrant Cascadian | 40abfee | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 50 | BOOTENV \ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 51 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 52 | /* memtest works on */ |
| 53 | #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) |
| 54 | #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \ |
| 55 | 0x01F00000) /* 31MB */ |
| 56 | |
Grazvydas Ignotas | 7637545 | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 57 | #if defined(CONFIG_NAND) |
pekon gupta | 222a311 | 2014-07-18 17:59:41 +0530 | [diff] [blame] | 58 | #define CONFIG_SYS_FLASH_BASE NAND_BASE |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 59 | #endif |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 60 | |
| 61 | /* Monitor at start of flash */ |
| 62 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 63 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 64 | |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 65 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |
Adam Ford | 7672d9d | 2017-09-04 21:08:02 -0500 | [diff] [blame] | 66 | #define CONFIG_ENV_OFFSET 0x260000 |
| 67 | #define CONFIG_ENV_ADDR 0x260000 |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 68 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 69 | #endif /* __CONFIG_H */ |