Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009-2012 |
| 3 | * Wojciech Dubowik <wojciech.dubowik@neratec.com> |
Luka Perkov | 3fdf759 | 2012-12-03 03:24:15 +0000 | [diff] [blame] | 4 | * Luka Perkov <luka@openwrt.org> |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _CONFIG_ICONNECT_H |
| 10 | #define _CONFIG_ICONNECT_H |
| 11 | |
| 12 | /* |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 13 | * High level configuration options |
| 14 | */ |
| 15 | #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 16 | #define CONFIG_KW88F6281 /* SOC Name */ |
| 17 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 18 | |
| 19 | /* |
Tom Rini | 94ba26f | 2017-01-25 20:42:35 -0500 | [diff] [blame] | 20 | * Machine type |
| 21 | */ |
| 22 | #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT |
| 23 | |
| 24 | /* |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 25 | * Compression configuration |
| 26 | */ |
| 27 | #define CONFIG_BZIP2 |
| 28 | #define CONFIG_LZMA |
| 29 | #define CONFIG_LZO |
| 30 | |
| 31 | /* |
| 32 | * Commands configuration |
| 33 | */ |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 34 | #define CONFIG_SYS_MVFS |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 35 | #define CONFIG_CMD_ENV |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 36 | #define CONFIG_CMD_NAND |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * mv-common.h should be defined after CMD configs since it used them |
| 40 | * to enable certain macros |
| 41 | */ |
| 42 | #include "mv-common.h" |
| 43 | |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 44 | /* |
| 45 | * Environment variables configuration |
| 46 | */ |
| 47 | #ifdef CONFIG_CMD_NAND |
| 48 | #define CONFIG_ENV_IS_IN_NAND |
| 49 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
| 50 | #else |
| 51 | #define CONFIG_ENV_IS_NOWHERE |
| 52 | #endif |
| 53 | #define CONFIG_ENV_SIZE 0x20000 |
| 54 | #define CONFIG_ENV_OFFSET 0x80000 |
| 55 | |
| 56 | /* |
| 57 | * Default environment variables |
| 58 | */ |
| 59 | #define CONFIG_BOOTCOMMAND \ |
| 60 | "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ |
| 61 | "ubi part rootfs; " \ |
Joe Hershberger | 949a771 | 2012-11-01 16:54:18 +0000 | [diff] [blame] | 62 | "ubifsmount ubi:rootfs; " \ |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 63 | "ubifsload 0x800000 ${kernel}; " \ |
| 64 | "bootm 0x800000" |
| 65 | |
| 66 | #define CONFIG_MTDPARTS \ |
| 67 | "mtdparts=orion_nand:" \ |
| 68 | "0x80000@0x0(uboot)," \ |
| 69 | "0x20000@0x80000(uboot_env)," \ |
| 70 | "-@0xa0000(rootfs)\0" |
| 71 | |
| 72 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 73 | "console=console=ttyS0,115200\0" \ |
| 74 | "mtdids=nand0=orion_nand\0" \ |
| 75 | "mtdparts="CONFIG_MTDPARTS \ |
| 76 | "kernel=/boot/uImage\0" \ |
| 77 | "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0" |
| 78 | |
| 79 | /* |
| 80 | * Ethernet driver configuration |
| 81 | */ |
| 82 | #ifdef CONFIG_CMD_NET |
| 83 | #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ |
| 84 | #define CONFIG_PHY_BASE_ADR 11 |
| 85 | #undef CONFIG_RESET_PHY_R |
| 86 | #endif /* CONFIG_CMD_NET */ |
| 87 | |
| 88 | /* |
| 89 | * File system |
| 90 | */ |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 91 | #define CONFIG_CMD_JFFS2 |
Luka Perkov | 9b91472 | 2012-09-05 08:01:25 +0000 | [diff] [blame] | 92 | #define CONFIG_CMD_UBIFS |
| 93 | #define CONFIG_RBTREE |
| 94 | #define CONFIG_MTD_DEVICE |
| 95 | #define CONFIG_MTD_PARTITIONS |
| 96 | #define CONFIG_CMD_MTDPARTS |
| 97 | |
| 98 | #endif /* _CONFIG_ICONNECT_H */ |