1 /* 2 * brxre1.h 3 * 4 * specific parts for B&R KWB Motherboard 5 * 6 * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at> - 7 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com 8 * 9 * SPDX-License-Identifier: GPL-2.0+ 10 */ 11 12 #ifndef __CONFIG_BRXRE1_H__ 13 #define __CONFIG_BRXRE1_H__ 14 15 #include <configs/bur_cfg_common.h> 16 #include <configs/bur_am335x_common.h> 17 /* ------------------------------------------------------------------------- */ 18 #define CONFIG_AM335X_LCD 19 #define CONFIG_LCD 20 #define CONFIG_LCD_NOSTDOUT 21 #define CONFIG_SYS_WHITE_ON_BLACK 22 #define LCD_BPP LCD_COLOR32 23 24 #define CONFIG_VIDEO_BMP_GZIP 25 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (1366*767*4) 26 #define CONFIG_CMD_UNZIP 27 #define CONFIG_CMD_BMP 28 #define CONFIG_BMP_24BMP 29 #define CONFIG_BMP_32BPP 30 31 /* memory */ 32 #define CONFIG_SYS_MALLOC_LEN (5 * 1024 * 1024) 33 34 /* Clock Defines */ 35 #define V_OSCK 26000000 /* Clock output from T2 */ 36 #define V_SCLK (V_OSCK) 37 38 #define CONFIG_POWER_TPS65217 39 40 #define CONFIG_MACH_TYPE 3589 41 /* I2C IP block */ 42 #define CONFIG_SYS_OMAP24_I2C_SPEED_PSOC 20000 43 44 /* GPIO */ 45 46 /* MMC/SD IP block */ 47 #define CONFIG_MMC 48 #define CONFIG_GENERIC_MMC 49 #define CONFIG_OMAP_HSMMC 50 #define CONFIG_SUPPORT_EMMC_BOOT 51 /* RAW SD card / eMMC locations. */ 52 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /*addr. 0x60000 */ 53 #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */ 54 55 /* Always 64 KiB env size */ 56 #define CONFIG_ENV_SIZE (64 << 10) 57 58 #ifndef CONFIG_SPL_BUILD 59 #define CONFIG_EXTRA_ENV_SETTINGS \ 60 BUR_COMMON_ENV \ 61 "bootaddr=0x80001100\0" \ 62 "bootdev=cpsw(0,0)\0" \ 63 "vx_romfsbase=0x800E0000\0" \ 64 "vx_romfssize=0x20000\0" \ 65 "vx_memtop=0x8FBEF000\0" \ 66 "loadromfs=mmc read ${vx_romfsbase} 700 100\0" \ 67 "autoload=0\0" \ 68 "loadaddr=0x80100000\0" \ 69 "logoaddr=0x82000000\0" \ 70 "defaultARlen=0x8000\0" \ 71 "loaddefaultAR=mmc read ${loadaddr} 800 ${defaultARlen}\0" \ 72 "defaultAR=run loadromfs; run loaddefaultAR; bootvx ${loadaddr}\0" \ 73 "logo0=fatload mmc 0:1 ${logoaddr} SYSTEM/ADDON/Bootlogo/Bootlogo.bmp.gz && " \ 74 "bmp display ${logoaddr} 0 0\0" \ 75 "logo1=fatload mmc 0:1 ${logoaddr} SYSTEM/BASE/Bootlogo/Bootlogo.bmp.gz && " \ 76 "bmp display ${logoaddr} 0 0\0" \ 77 "mmcboot=echo booting AR from eMMC-flash ...; "\ 78 "run logo0 || run logo1; " \ 79 "run loadromfs; " \ 80 "fatload mmc 0:1 ${loadaddr} arimg && bootvx ${loadaddr}; " \ 81 "run defaultAR;\0" \ 82 "netboot=echo booting AR from network ...; " \ 83 "run loadromfs; " \ 84 "tftp ${loadaddr} arimg && bootvx ${loadaddr}; " \ 85 "puts 'networkboot failed!';\0" \ 86 "netscript=echo running script from network (tftp) ...; " \ 87 "tftp 0x80000000 netscript.img && source; " \ 88 "puts 'netscript load failed!'\0" \ 89 "netupdate=tftp ${loadddr} MLO && mmc write ${loadaddr} 100 100; " \ 90 "tftp ${loadaddr} u-boot.img && mmc write ${loadaddr} 300 300\0" \ 91 "netupdatedefaultAR=echo updating defaultAR from network (tftp) ...; " \ 92 "if tftp 0x80100000 arimg.bin; " \ 93 "then mmc write 0x80100000 800 ${defaultARlen}; " \ 94 "else setcurs 1 8; puts 'defAR update failed (tftp)!'; fi;\0" \ 95 "netupdateROMFS=echo updating romfs from network (tftp) ...; " \ 96 "if tftp 0x80100000 romfs.bin; " \ 97 "then mmc write 0x80100000 700 100; " \ 98 "else setcurs 1 8; puts 'romfs update failed (tftp)!'; fi;\0" 99 100 #endif /* !CONFIG_SPL_BUILD*/ 101 102 #define CONFIG_BOOTCOMMAND \ 103 "run usbscript;" 104 105 /* undefine command which we not need here */ 106 #undef CONFIG_BOOTM_NETBSD 107 #undef CONFIG_BOOTM_PLAN9 108 #undef CONFIG_BOOTM_RTEMS 109 110 /* Support both device trees and ATAGs. */ 111 #define CONFIG_CMDLINE_TAG 112 #define CONFIG_SETUP_MEMORY_TAGS 113 #define CONFIG_INITRD_TAG 114 115 /* USB configuration */ 116 #define CONFIG_USB_MUSB_DSPS 117 #define CONFIG_ARCH_MISC_INIT 118 #define CONFIG_USB_MUSB_PIO_ONLY 119 #define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT 120 #define CONFIG_AM335X_USB0 121 #define CONFIG_AM335X_USB0_MODE MUSB_HOST 122 #define CONFIG_AM335X_USB1 123 #define CONFIG_AM335X_USB1_MODE MUSB_HOST 124 125 #undef CONFIG_ENV_IS_NOWHERE 126 #define CONFIG_ENV_IS_IN_MMC 127 #define CONFIG_SYS_MMC_ENV_DEV 0 128 #define CONFIG_SYS_MMC_ENV_PART 2 129 #define CONFIG_ENV_OFFSET 0x40000 /* TODO: Adresse definieren */ 130 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) 131 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT 132 /* 133 * Common filesystems support. When we have removable storage we 134 * enabled a number of useful commands and support. 135 */ 136 #if defined(CONFIG_MMC) || defined(CONFIG_USB_STORAGE) 137 #define CONFIG_DOS_PARTITION 138 #define CONFIG_FAT_WRITE 139 #endif /* CONFIG_MMC, ... */ 140 141 #endif /* __CONFIG_BRXRE1_H__ */ 142