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 - https://www.ti.com/
10 */
11
12#ifndef __CONFIG_RASTABAN_H
13#define __CONFIG_RASTABAN_H
14
15#include "siemens-am33x-common.h"
16
17#define DDR_PLL_FREQ	303
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 CFG_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
34 /* Physical Memory Map */
35#define CFG_MAX_RAM_BANK_SIZE	(1024 << 20)	/* 1GB */
36
37/* Default env settings */
38#define CFG_EXTRA_ENV_SETTINGS \
39	"hostname=rastaban\0" \
40	"ubi_off=2048\0"\
41	"nand_img_size=0x400000\0" \
42	"optargs=\0" \
43	"preboot=draco_led 0\0" \
44	CFG_ENV_SETTINGS_BUTTONS_AND_LEDS \
45	CFG_ENV_SETTINGS_V2 \
46	CFG_ENV_SETTINGS_NAND_V2
47
48#endif	/* ! __CONFIG_RASTABAN_H */
49