Convert CONFIG_SYS_I2C_SPEED et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / draco.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2013 Siemens Schweiz AG
4  * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
5  *
6  * Based on:
7  * U-Boot file:/include/configs/am335x_evm.h
8  *
9  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
10  */
11
12 #ifndef __CONFIG_DRACO_H
13 #define __CONFIG_DRACO_H
14
15 #define CONFIG_SIEMENS_MACH_TYPE        MACH_TYPE_DRACO
16
17 #include "siemens-am33x-common.h"
18
19 #define DDR_PLL_FREQ    303
20
21 #define BOARD_DFU_BUTTON_GPIO   27      /* Use as default */
22 #define GPIO_LAN9303_NRST       88      /* GPIO2_24 = gpio88 */
23
24 #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
25         "button_dfu0=27\0" \
26         "led0=103,1,0\0" \
27         "led1=64,0,1\0"
28
29  /* Physical Memory Map */
30 #define CONFIG_MAX_RAM_BANK_SIZE        (1024 << 20)    /* 1GB */
31
32 #define CONFIG_FACTORYSET
33
34 /* Define own nand partitions */
35 #define CONFIG_ENV_RANGE        (4 * CONFIG_SYS_ENV_SECT_SIZE)
36
37 #ifndef CONFIG_SPL_BUILD
38
39 /* Default env settings */
40 #define CONFIG_EXTRA_ENV_SETTINGS \
41         "hostname=draco\0" \
42         "ubi_off=2048\0"\
43         "nand_img_size=0x400000\0" \
44         "optargs=\0" \
45         "preboot=draco_led 0\0" \
46         CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
47         CONFIG_ENV_SETTINGS_V2 \
48         CONFIG_ENV_SETTINGS_NAND_V2
49
50 #ifndef CONFIG_RESTORE_FLASH
51 /* set to negative value for no autoboot */
52
53 #define CONFIG_BOOTCOMMAND \
54 "if dfubutton; then " \
55         "run dfu_start; " \
56         "reset; " \
57 "fi;" \
58 "run nand_boot;" \
59 "run nand_boot_backup;" \
60 "reset;"
61
62 #else
63
64 #define CONFIG_BOOTCOMMAND                      \
65         "setenv autoload no; "                  \
66         "dhcp; "                                \
67         "if tftp 80000000 debrick.scr; then "   \
68                 "source 80000000; "             \
69         "fi"
70 #endif
71 #endif  /* CONFIG_SPL_BUILD */
72 #endif  /* ! __CONFIG_DRACO_H */