Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 2 | /* |
Grazvydas Ignotas | 9f4de64 | 2010-11-19 11:25:36 -0500 | [diff] [blame] | 3 | * (C) Copyright 2008-2010 |
| 4 | * GraÅžvydas Ignotas <notasas@gmail.com> |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 5 | * |
| 6 | * Configuration settings for the OMAP3 Pandora. |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __CONFIG_H |
| 10 | #define __CONFIG_H |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 11 | |
Grazvydas Ignotas | 56f860f | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 12 | /* override base for compatibility with MLO the device ships with */ |
Vaibhav Hiremath | 558d23d | 2010-06-07 15:20:34 -0400 | [diff] [blame] | 13 | |
Grazvydas Ignotas | 56f860f | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 14 | #include <configs/ti_omap3_common.h> |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 15 | |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 16 | #define CONFIG_REVISION_TAG 1 |
| 17 | |
Sandeep Paulraj | 6a87b3f | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 18 | #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ |
Grazvydas Ignotas | 56f860f | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 19 | |
Grazvydas Ignotas | 56f860f | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 20 | #define CONFIG_SYS_DEVICE_NULLDEV 1 |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 21 | |
| 22 | /* |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 23 | * Board NAND Info. |
| 24 | */ |
Grazvydas Ignotas | 56f860f | 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 | 9f4de64 | 2010-11-19 11:25:36 -0500 | [diff] [blame] | 28 | |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 29 | |
| 30 | #define CONFIG_BOOTCOMMAND \ |
Vagrant Cascadian | d6ff05e | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 31 | "run distro_bootcmd; " \ |
Vagrant Cascadian | 1f7fbf0 | 2016-08-30 13:16:32 -0700 | [diff] [blame] | 32 | "setenv bootargs ${bootargs_ubi}; " \ |
Vagrant Cascadian | 1daf378 | 2016-08-29 00:56:06 -0700 | [diff] [blame] | 33 | "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \ |
Grazvydas Ignotas | 9f4de64 | 2010-11-19 11:25:36 -0500 | [diff] [blame] | 34 | "source ${loadaddr}; " \ |
| 35 | "fi; " \ |
Joe Hershberger | 108458a | 2012-11-01 16:54:18 +0000 | [diff] [blame] | 36 | "ubi part boot && ubifsmount ubi:boot && " \ |
| 37 | "ubifsload ${loadaddr} uImage && bootm ${loadaddr}" |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 38 | |
Vagrant Cascadian | d6ff05e | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 39 | #define BOOT_TARGET_DEVICES(func) \ |
| 40 | func(MMC, mmc, 0) \ |
| 41 | |
| 42 | #include <config_distro_bootcmd.h> |
| 43 | |
| 44 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 45 | DEFAULT_LINUX_BOOT_ENV \ |
| 46 | "usbtty=cdc_acm\0" \ |
Vagrant Cascadian | 1f7fbf0 | 2016-08-30 13:16:32 -0700 | [diff] [blame] | 47 | "bootargs_ubi=ubi.mtd=4 ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs " \ |
Vagrant Cascadian | d6ff05e | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 48 | "rw rootflags=bulk_read vram=6272K omapfb.vram=0:3000K\0" \ |
Tom Rini | 5ad8e11 | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 49 | "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ |
Vagrant Cascadian | d6ff05e | 2016-08-30 13:16:31 -0700 | [diff] [blame] | 50 | BOOTENV \ |
| 51 | |
Dirk Behme | 7b84a7b | 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 | 56f860f | 2015-04-09 02:14:33 +0300 | [diff] [blame] | 57 | #if defined(CONFIG_NAND) |
pekon gupta | 0a9ec45 | 2014-07-18 17:59:41 +0530 | [diff] [blame] | 58 | #define CONFIG_SYS_FLASH_BASE NAND_BASE |
Luca Ceresoli | 9783a2c | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 59 | #endif |
Dirk Behme | 7b84a7b | 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 | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 63 | |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 64 | |
Luca Ceresoli | 9783a2c | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 65 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |
Adam Ford | 6b1c165 | 2017-09-04 21:08:02 -0500 | [diff] [blame] | 66 | #define CONFIG_ENV_OFFSET 0x260000 |
| 67 | #define CONFIG_ENV_ADDR 0x260000 |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 68 | |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 69 | #endif /* __CONFIG_H */ |