Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011-2012 |
| 4 | * Gerald Kerma <dreagle@doukki.net> |
Luka Perkov | 3fdf759 | 2012-12-03 03:24:15 +0000 | [diff] [blame] | 5 | * Luka Perkov <luka@openwrt.org> |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _CONFIG_IB62x0_H |
| 9 | #define _CONFIG_IB62x0_H |
| 10 | |
| 11 | /* |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 12 | * High level configuration options |
| 13 | */ |
| 14 | #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 15 | #define CONFIG_KW88F6281 /* SOC Name */ |
| 16 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 17 | |
Luka Perkov | bd4c1d3 | 2015-10-31 20:33:39 +0100 | [diff] [blame] | 18 | /* Add target to build it automatically upon "make" */ |
| 19 | #define CONFIG_BUILD_TARGET "u-boot.kwb" |
| 20 | |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 21 | /* |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 22 | * Compression configuration |
| 23 | */ |
| 24 | #define CONFIG_BZIP2 |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * Commands configuration |
| 28 | */ |
Chris Packham | e85f490 | 2018-05-26 22:32:29 +1200 | [diff] [blame] | 29 | #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ |
| 30 | #define CONFIG_MTD_PARTITIONS |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 31 | |
| 32 | /* |
| 33 | * mv-common.h should be defined after CMD configs since it used them |
| 34 | * to enable certain macros |
| 35 | */ |
| 36 | #include "mv-common.h" |
| 37 | |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 38 | /* |
| 39 | * Environment variables configuration |
| 40 | */ |
| 41 | #ifdef CONFIG_CMD_NAND |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 42 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 43 | #endif |
| 44 | #define CONFIG_ENV_SIZE 0x20000 |
Luka Perkov | 5722622 | 2013-10-31 04:05:05 +0100 | [diff] [blame] | 45 | #define CONFIG_ENV_OFFSET 0xe0000 |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * Default environment variables |
| 49 | */ |
| 50 | #define CONFIG_BOOTCOMMAND \ |
| 51 | "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ |
| 52 | "ubi part root; " \ |
Luka Perkov | 5722622 | 2013-10-31 04:05:05 +0100 | [diff] [blame] | 53 | "ubifsmount ubi:rootfs; " \ |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 54 | "ubifsload 0x800000 ${kernel}; " \ |
Luka Perkov | 5722622 | 2013-10-31 04:05:05 +0100 | [diff] [blame] | 55 | "ubifsload 0x700000 ${fdt}; " \ |
| 56 | "ubifsumount; " \ |
| 57 | "fdt addr 0x700000; fdt resize; fdt chosen; " \ |
| 58 | "bootz 0x800000 - 0x700000" |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 59 | |
Luka Perkov | 5722622 | 2013-10-31 04:05:05 +0100 | [diff] [blame] | 60 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 61 | "console=console=ttyS0,115200\0" \ |
| 62 | "mtdids=nand0=orion_nand\0" \ |
Tom Rini | 43ede0b | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 63 | "mtdparts="CONFIG_MTDPARTS_DEFAULT \ |
Luka Perkov | 5722622 | 2013-10-31 04:05:05 +0100 | [diff] [blame] | 64 | "kernel=/boot/zImage\0" \ |
| 65 | "fdt=/boot/ib62x0.dtb\0" \ |
| 66 | "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * Ethernet driver configuration |
| 70 | */ |
| 71 | #ifdef CONFIG_CMD_NET |
| 72 | #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ |
| 73 | #define CONFIG_PHY_BASE_ADR 0 |
| 74 | #undef CONFIG_RESET_PHY_R |
| 75 | #endif /* CONFIG_CMD_NET */ |
| 76 | |
| 77 | /* |
| 78 | * SATA driver configuration |
| 79 | */ |
Simon Glass | fc843a0 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 80 | #ifdef CONFIG_IDE |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 81 | #define __io |
| 82 | #define CONFIG_IDE_PREINIT |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 83 | #define CONFIG_MVSATA_IDE_USE_PORT0 |
| 84 | #define CONFIG_MVSATA_IDE_USE_PORT1 |
| 85 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET |
| 86 | #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET |
Simon Glass | fc843a0 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 87 | #endif /* CONFIG_IDE */ |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * RTC driver configuration |
| 91 | */ |
| 92 | #ifdef CONFIG_CMD_DATE |
| 93 | #define CONFIG_RTC_MV |
| 94 | #endif /* CONFIG_CMD_DATE */ |
| 95 | |
Luka Perkov | e5841e1 | 2012-04-17 09:22:17 +0000 | [diff] [blame] | 96 | #endif /* _CONFIG_IB62x0_H */ |