48b388a80a0df241b8524ab2ca60026bc95a2899
[platform/kernel/u-boot.git] / include / configs / pxm2.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * siemens pxm2
4  * (C) Copyright 2013 Siemens Schweiz AG
5  * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
6  *
7  * Based on:
8  * U-Boot file:/include/configs/am335x_evm.h
9  *
10  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
11  */
12
13 #ifndef __CONFIG_PXM2_H
14 #define __CONFIG_PXM2_H
15
16 #include "siemens-am33x-common.h"
17
18 #define DDR_IOCTRL_VAL          0x18b
19 #define DDR_PLL_FREQ            266
20
21 #define BOARD_DFU_BUTTON_GPIO   59
22 #define BOARD_LCD_POWER         111
23 #define BOARD_BACK_LIGHT        112
24 #define BOARD_TOUCH_POWER       57
25
26 #define CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
27         "button_dfu0=59\0" \
28         "led0=117,0,1\0" \
29
30  /* Physical Memory Map */
31 #define CONFIG_MAX_RAM_BANK_SIZE        (512 << 20)     /* 1GB */
32
33 #define CONFIG_FACTORYSET
34
35 #ifndef CONFIG_SPL_BUILD
36
37 /* Use common default */
38
39 /* Default env settings */
40 #define CONFIG_EXTRA_ENV_SETTINGS \
41         "hostname=pxm2\0" \
42         "ubi_off=2048\0"\
43         "nand_img_size=0x500000\0" \
44         "optargs=\0" \
45         "preboot=draco_led 0\0" \
46         CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS \
47         "splashpos=m,m\0"       \
48         CONFIG_ENV_SETTINGS_V1 \
49         CONFIG_ENV_SETTINGS_NAND_V1 \
50         "mmc_dev=0\0" \
51         "mmc_root=/dev/mmcblk0p2 rw\0" \
52         "mmc_root_fs_type=ext4 rootwait\0" \
53         "mmc_load_uimage=" \
54                 "mmc rescan; " \
55                 "setenv bootfile uImage;" \
56                 "fatload mmc ${mmc_dev} ${kloadaddr} ${bootfile}\0" \
57         "loadbootenv=fatload mmc ${mmc_dev} ${loadaddr} ${bootenv}\0" \
58         "importbootenv=echo Importing environment from mmc ...; " \
59                 "env import -t $loadaddr $filesize\0" \
60         "mmc_args=run bootargs_defaults;" \
61                 "mtdparts default;" \
62                 "setenv bootargs ${bootargs} " \
63                 "root=${mmc_root} ${mtdparts}" \
64                 "rootfstype=${mmc_root_fs_type} ip=${ip_method} " \
65                 "eth=${ethaddr} " \
66                 "\0" \
67         "mmc_boot=run mmc_args; " \
68                 "run mmc_load_uimage; " \
69                 "bootm ${kloadaddr}\0" \
70         ""
71
72 #ifndef CONFIG_RESTORE_FLASH
73 /* set to negative value for no autoboot */
74 #endif
75 #endif  /* CONFIG_SPL_BUILD */
76
77 #if defined(CONFIG_VIDEO)
78 #define CONFIG_VIDEO_DA8XX
79 #define CONFIG_VIDEO_LOGO
80 #define CONFIG_VIDEO_BMP_LOGO
81 #define DA8XX_LCD_CNTL_BASE     LCD_CNTL_BASE
82 #define PWM_TICKS       0x1388
83 #define PWM_DUTY        0x200
84 #endif
85
86 #endif  /* ! __CONFIG_PXM2_H */