board/BuR: rename kwb board to brxre1

Rename B&R kwb board to brxre1

Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Hannes Schmelzer 2016-06-22 12:36:14 +02:00 committed by Tom Rini
parent 2290fe0642
commit a4d799939f
9 changed files with 20 additions and 20 deletions

View File

@ -304,8 +304,8 @@ config TARGET_VEXPRESS_CA9X4
bool "Support vexpress_ca9x4" bool "Support vexpress_ca9x4"
select CPU_V7 select CPU_V7
config TARGET_KWB config TARGET_BRXRE1
bool "Support kwb" bool "Support BRXRE1"
select CPU_V7 select CPU_V7
select SUPPORT_SPL select SUPPORT_SPL
@ -908,7 +908,7 @@ source "arch/arm/cpu/armv8/Kconfig"
source "arch/arm/imx-common/Kconfig" source "arch/arm/imx-common/Kconfig"
source "board/bosch/shc/Kconfig" source "board/bosch/shc/Kconfig"
source "board/BuR/kwb/Kconfig" source "board/BuR/brxre1/Kconfig"
source "board/BuR/brppt1/Kconfig" source "board/BuR/brppt1/Kconfig"
source "board/CarMediaLab/flea3/Kconfig" source "board/CarMediaLab/flea3/Kconfig"
source "board/Marvell/aspenite/Kconfig" source "board/Marvell/aspenite/Kconfig"

View File

@ -1,7 +1,7 @@
if TARGET_KWB if TARGET_BRXRE1
config SYS_BOARD config SYS_BOARD
default "kwb" default "brxre1"
config SYS_VENDOR config SYS_VENDOR
default "BuR" default "BuR"
@ -10,6 +10,6 @@ config SYS_SOC
default "am33xx" default "am33xx"
config SYS_CONFIG_NAME config SYS_CONFIG_NAME
default "kwb" default "brxre1"
endif endif

View File

@ -0,0 +1,6 @@
BRXRE1 BOARD
M: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
S: Maintained
F: board/BuR/brxre1/
F: include/configs/brxre1.h
F: configs/brxre1_defconfig

View File

@ -1,7 +1,7 @@
/* /*
* board.c * board.c
* *
* Board functions for B&R KWB Board * Board functions for B&R BRXRE1 Board
* *
* Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at> * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at>
* Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
@ -101,7 +101,7 @@ void am33xx_spl_board_init(void)
*/ */
u32 *const clk_domains[] = { 0 }; u32 *const clk_domains[] = { 0 };
u32 *const clk_modules_kwbspecific[] = { u32 *const clk_modules_xre1specific[] = {
&cmwkup->wkup_adctscctrl, &cmwkup->wkup_adctscctrl,
&cmper->spi1clkctrl, &cmper->spi1clkctrl,
&cmper->dcan0clkctrl, &cmper->dcan0clkctrl,
@ -113,7 +113,7 @@ void am33xx_spl_board_init(void)
&cmper->lcdcclkstctrl, &cmper->lcdcclkstctrl,
0 0
}; };
do_enable_clocks(clk_domains, clk_modules_kwbspecific, 1); do_enable_clocks(clk_domains, clk_modules_xre1specific, 1);
/* setup LCD-Pixel Clock */ /* setup LCD-Pixel Clock */
writel(0x2, CM_DPLL + 0x34); writel(0x2, CM_DPLL + 0x34);
/* power-OFF LCD-Display */ /* power-OFF LCD-Display */

View File

@ -1,6 +0,0 @@
KWB BOARD
M: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
S: Maintained
F: board/BuR/kwb/
F: include/configs/kwb.h
F: configs/kwb_defconfig

View File

@ -1,5 +1,5 @@
CONFIG_ARM=y CONFIG_ARM=y
CONFIG_TARGET_KWB=y CONFIG_TARGET_BRXRE1=y
CONFIG_SPL=y CONFIG_SPL=y
CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1" CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1"
CONFIG_BOOTDELAY=0 CONFIG_BOOTDELAY=0

View File

@ -1,5 +1,5 @@
/* /*
* kwb.h * brxre1.h
* *
* specific parts for B&R KWB Motherboard * specific parts for B&R KWB Motherboard
* *
@ -9,8 +9,8 @@
* SPDX-License-Identifier: GPL-2.0+ * SPDX-License-Identifier: GPL-2.0+
*/ */
#ifndef __CONFIG_KWB_H__ #ifndef __CONFIG_BRXRE1_H__
#define __CONFIG_KWB_H__ #define __CONFIG_BRXRE1_H__
#include <configs/bur_cfg_common.h> #include <configs/bur_cfg_common.h>
#include <configs/bur_am335x_common.h> #include <configs/bur_am335x_common.h>
@ -140,4 +140,4 @@ BUR_COMMON_ENV \
#define CONFIG_FAT_WRITE #define CONFIG_FAT_WRITE
#endif /* CONFIG_MMC, ... */ #endif /* CONFIG_MMC, ... */
#endif /* __CONFIG_KWB_H__ */ #endif /* __CONFIG_BRXRE1_H__ */