Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 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/ |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #ifndef __CONFIG_RASTABAN_H |
| 13 | #define __CONFIG_RASTABAN_H |
| 14 | |
| 15 | #include "siemens-am33x-common.h" |
| 16 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 17 | #define DDR_PLL_FREQ 303 |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 18 | |
| 19 | /* FWD Button = 27 |
| 20 | * SRV Button = 87 */ |
| 21 | #define BOARD_DFU_BUTTON_GPIO 27 |
| 22 | #define GPIO_LAN9303_NRST 88 /* GPIO2_24 = gpio88 */ |
| 23 | /* In dfu mode keep led1 on */ |
| 24 | #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \ |
| 25 | "button_dfu0=27\0" \ |
| 26 | "button_dfu1=87\0" \ |
| 27 | "led0=3,0,1\0" \ |
| 28 | "led1=4,0,0\0" \ |
| 29 | "led2=5,0,1\0" \ |
| 30 | "led3=62,0,1\0" \ |
| 31 | "led4=60,0,1\0" \ |
| 32 | "led5=63,0,1\0" |
| 33 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 34 | /* Physical Memory Map */ |
| 35 | #define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */ |
| 36 | |
| 37 | /* I2C Configuration */ |
| 38 | #define CONFIG_SYS_I2C_SPEED 100000 |
| 39 | |
| 40 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 |
| 41 | #define EEPROM_ADDR_DDR3 0x90 |
| 42 | #define EEPROM_ADDR_CHIP 0x120 |
| 43 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 44 | #define CONFIG_FACTORYSET |
| 45 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 46 | /* Define own nand partitions */ |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 47 | #define CONFIG_ENV_RANGE (4 * CONFIG_SYS_ENV_SECT_SIZE) |
| 48 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 49 | #ifndef CONFIG_SPL_BUILD |
| 50 | |
| 51 | /* Default env settings */ |
| 52 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 53 | "hostname=rastaban\0" \ |
Heiko Schocher | 6b3943f | 2016-06-07 08:55:45 +0200 | [diff] [blame] | 54 | "ubi_off=2048\0"\ |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 55 | "nand_img_size=0x400000\0" \ |
| 56 | "optargs=\0" \ |
| 57 | "preboot=draco_led 0\0" \ |
| 58 | CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \ |
| 59 | CONFIG_ENV_SETTINGS_V2 \ |
| 60 | CONFIG_ENV_SETTINGS_NAND_V2 |
| 61 | |
| 62 | #ifndef CONFIG_RESTORE_FLASH |
| 63 | /* set to negative value for no autoboot */ |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 64 | |
| 65 | #define CONFIG_BOOTCOMMAND \ |
| 66 | "if dfubutton; then " \ |
| 67 | "run dfu_start; " \ |
| 68 | "reset; " \ |
| 69 | "fi;" \ |
| 70 | "run nand_boot;" \ |
| 71 | "run nand_boot_backup;" \ |
| 72 | "reset;" |
| 73 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 74 | #else |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 75 | |
| 76 | #define CONFIG_BOOTCOMMAND \ |
| 77 | "setenv autoload no; " \ |
| 78 | "dhcp; " \ |
| 79 | "if tftp 80000000 debrick.scr; then " \ |
| 80 | "source 80000000; " \ |
| 81 | "fi" |
| 82 | #endif |
| 83 | #endif /* CONFIG_SPL_BUILD */ |
| 84 | #endif /* ! __CONFIG_RASTABAN_H */ |