]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/tk71.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / configs / tk71.h
1 /*
2 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
3 * on behalf of DENX Software Engineering GmbH
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #ifndef __CONFIG_TK71_H__
9 #define __CONFIG_TK71_H__
10
11 /*
12 * Version number information
13 */
14 #define CONFIG_IDENT_STRING "\nKa-Ro TK71"
15
16 /*
17 * High Level Configuration Options (easy to change)
18 */
19 #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
20 #define CONFIG_KIRKWOOD 1 /* SOC Family Name */
21 #define CONFIG_KW88F6281 1 /* SOC Name */
22 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
23 #define CONFIG_NR_DRAM_BANKS 1
24
25 #define MACH_TYPE_TK71 2399
26 #define CONFIG_MACH_TYPE MACH_TYPE_TK71
27
28 /*
29 * Commands configuration
30 */
31 #define CONFIG_SYS_HUSH_PARSER
32
33 #define CONFIG_SYS_NO_FLASH
34 #define CONFIG_DOS_PARTITION
35 #define CONFIG_SUPPORT_VFAT
36
37 #include <config_cmd_default.h>
38 #define CONFIG_CMD_DHCP
39 #define CONFIG_CMD_ENV
40 #define CONFIG_CMD_EXT2
41 #define CONFIG_CMD_FAT
42 #define CONFIG_CMD_MTDPARTS
43 #define CONFIG_CMD_NAND
44 #define CONFIG_CMD_PING
45 #define CONFIG_CMD_USB
46
47 /*
48 * mv-common.h should be defined after CMD configs since it used them
49 * to enable certain macros
50 */
51 #include "mv-common.h"
52
53 /*
54 * NAND flash
55 */
56 #ifdef CONFIG_CMD_NAND
57 #define CONFIG_MTD_DEVICE
58 #define CONFIG_MTD_PARTITIONS
59 #define CONFIG_JFFS2_NAND
60 #define CONFIG_JFFS2_DEV "nand0,3"
61 #endif
62
63 /*
64 * Ethernet Driver configuration
65 */
66 #ifdef CONFIG_CMD_NET
67 #define CONFIG_MVGBE_PORTS {1, 0}
68 #define CONFIG_PHY_BASE_ADR 0x08
69 #endif
70
71 /*
72 * USB/EHCI
73 */
74 #ifdef CONFIG_CMD_USB
75 #define CONFIG_USB_EHCI
76 #define CONFIG_USB_EHCI_KIRKWOOD
77 #define CONFIG_EHCI_IS_TDI
78 #define CONFIG_USB_STORAGE
79 #endif
80
81 /*
82 * Environment variables configurations
83 */
84 #ifdef CONFIG_CMD_NAND
85 #define CONFIG_ENV_IS_IN_NAND
86 #define CONFIG_ENV_SECT_SIZE 0x20000
87 #else
88 #define CONFIG_ENV_IS_NOWHERE
89 #endif
90
91 #define CONFIG_ENV_SIZE 0x20000
92 #define CONFIG_ENV_ADDR 0x80000
93 #define CONFIG_ENV_OFFSET 0x80000
94
95 /*
96 * Default environment variables
97 */
98 #define CONFIG_BOOTCOMMAND "nand read 0x800000 kernel 0x300000; bootm;"
99 #define CONFIG_MTDPARTS "512K(u-boot),512K(u-boot-env),3M(kernel),-(root)"
100 #define CONFIG_EXTRA_ENV_SETTINGS \
101 "update_uboot=dhcp u-boot.kwb; nand erase.part u-boot; nand write ${fileaddr} u-boot ${filesize}\0" \
102 "update_kernel=dhcp uImage-tk71; nand erase.part kernel; nand write ${fileaddr} kernel ${filesize} \0" \
103 "update_rootfs=dhcp rootfs-tk71; nand erase.part root; nand write ${fileaddr} root ${filesize}\0" \
104 "update_all=run update_uboot; run update_kernel; run update_rootfs; reset\0" \
105 "mtdids=nand0=orion_nand\0" \
106 "mtdparts=mtdparts=orion_nand:"CONFIG_MTDPARTS"\0" \
107 "bootargs=console=ttyS0,115200 mtdparts=orion_nand:"CONFIG_MTDPARTS" rootfstype=jffs2 root=/dev/mtdblock3 rw\0"
108 #define MTDIDS_DEFAULT "nand0=orion_nand"
109 #define MTDPARTS_DEFAULT "mtdparts=orion_nand:"CONFIG_MTDPARTS
110
111 #define PHYS_SDRAM_1 0x00000000 /* Base address */
112 #define PHYS_SDRAM_1_SIZE 0x20000000 /* Max 512 MB RAM */
113
114 #endif /* __CONFIG_TK71_H__ */