diff options
author | Alexey Brodkin <alexey.brodkin@synopsys.com> | 2018-10-18 09:54:58 +0300 |
---|---|---|
committer | Alexey Brodkin <abrodkin@synopsys.com> | 2018-11-01 23:04:05 +0300 |
commit | adc9b09a23f3cfef56130abc4c4c1a9085a0ec13 (patch) | |
tree | e0f697c49f0e718ef58da575c172b51a7420b905 /board/synopsys | |
parent | fdaccfeb5e03e18c05be386b8a7c6be02be2cf15 (diff) | |
download | u-boot-adc9b09a23f3cfef56130abc4c4c1a9085a0ec13.zip u-boot-adc9b09a23f3cfef56130abc4c4c1a9085a0ec13.tar.gz u-boot-adc9b09a23f3cfef56130abc4c4c1a9085a0ec13.tar.bz2 |
emdk->emsdp: Rename board
Real marketing name of the board was recently updated so
to accommodate that change renaming the board and all
related to it.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'board/synopsys')
-rw-r--r-- | board/synopsys/emsdp/Kconfig (renamed from board/synopsys/emdk/Kconfig) | 6 | ||||
-rw-r--r-- | board/synopsys/emsdp/MAINTAINERS (renamed from board/synopsys/emdk/MAINTAINERS) | 5 | ||||
-rw-r--r-- | board/synopsys/emsdp/Makefile (renamed from board/synopsys/emdk/Makefile) | 2 | ||||
-rw-r--r-- | board/synopsys/emsdp/README (renamed from board/synopsys/emdk/README) | 11 | ||||
-rw-r--r-- | board/synopsys/emsdp/emsdp.c (renamed from board/synopsys/emdk/emdk.c) | 18 |
5 files changed, 22 insertions, 20 deletions
diff --git a/board/synopsys/emdk/Kconfig b/board/synopsys/emsdp/Kconfig index a9b834d..8228bb5 100644 --- a/board/synopsys/emdk/Kconfig +++ b/board/synopsys/emsdp/Kconfig @@ -1,12 +1,12 @@ -if TARGET_EMDK +if TARGET_EMSDP config SYS_BOARD - default "emdk" + default "emsdp" config SYS_VENDOR default "synopsys" config SYS_CONFIG_NAME - default "emdk" + default "emsdp" endif diff --git a/board/synopsys/emdk/MAINTAINERS b/board/synopsys/emsdp/MAINTAINERS index 605e338..6404013 100644 --- a/board/synopsys/emdk/MAINTAINERS +++ b/board/synopsys/emsdp/MAINTAINERS @@ -1,5 +1,6 @@ EM DEVELOPMENT KIT BOARD M: Alexey Brodkin <abrodkin@synopsys.com> S: Maintained -F: board/synopsys/emdk/ -F: configs/emdk_defconfig +F: arch/arc/dts/emsdp.dts +F: board/synopsys/emsdp/ +F: configs/emsdp_defconfig diff --git a/board/synopsys/emdk/Makefile b/board/synopsys/emsdp/Makefile index 4926c4e..733a48c 100644 --- a/board/synopsys/emdk/Makefile +++ b/board/synopsys/emsdp/Makefile @@ -4,4 +4,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-y += emdk.o +obj-y += emsdp.o diff --git a/board/synopsys/emdk/README b/board/synopsys/emsdp/README index 706b547..034062e 100644 --- a/board/synopsys/emdk/README +++ b/board/synopsys/emsdp/README @@ -1,11 +1,12 @@ ================================================================================ -Useful notes on bulding and using of U-Boot on ARC EM Development Kit (AKA EMDK) +Useful notes on bulding and using of U-Boot on +ARC EM Software Development Platform (AKA EMSDP) ================================================================================ BOARD OVERVIEW - The DesignWare ARC EM Development Kit is FPGA-bases platform for rapid - software development on the ARC EM family of processors. + The DesignWare ARC EM Software Development Platform is FPGA-bases platform + for rapid software development on the ARC EM family of processors. Since this board is based on FPGA it's possible to load and use different versions of ARC EM CPUs. U-Boot is built to be run on the simplest @@ -50,7 +51,7 @@ Useful notes on bulding and using of U-Boot on ARC EM Development Kit (AKA EMDK) 1. Configure U-Boot: ------------------------->8---------------------- - make emdk_defconfig + make emsdp_defconfig ------------------------->8---------------------- 2. To build Elf file (for example to be used with host debugger via JTAG @@ -69,7 +70,7 @@ Useful notes on bulding and using of U-Boot on ARC EM Development Kit (AKA EMDK) EXECUTING U-BOOT - 1. The EMDK board is supposed to auto-start U-Boot image stored in ROM on + 1. The EMSDP board is supposed to auto-start U-Boot image stored in ROM on power-on. For that make sure VCCIO DIP-switches are all in "off" state. 2. Though it is possible to load U-Boot as a simple Elf file via JTAG right diff --git a/board/synopsys/emdk/emdk.c b/board/synopsys/emsdp/emsdp.c index 79cafef..b5ec7f1 100644 --- a/board/synopsys/emdk/emdk.c +++ b/board/synopsys/emsdp/emsdp.c @@ -55,7 +55,7 @@ void reset_cpu(ulong addr) ; /* loop forever till reset */ } -static int do_emdk_rom(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) +static int do_emsdp_rom(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) { u32 creg_boot = readl((u32 *)(CREG_BASE + CREG_BOOT_OFFSET)); @@ -71,17 +71,17 @@ static int do_emdk_rom(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) return CMD_RET_SUCCESS; } -cmd_tbl_t cmd_emdk[] = { - U_BOOT_CMD_MKENT(rom, 2, 0, do_emdk_rom, "", ""), +cmd_tbl_t cmd_emsdp[] = { + U_BOOT_CMD_MKENT(rom, 2, 0, do_emsdp_rom, "", ""), }; -static int do_emdk(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) +static int do_emsdp(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) { cmd_tbl_t *c; - c = find_cmd_tbl(argv[1], cmd_emdk, ARRAY_SIZE(cmd_emdk)); + c = find_cmd_tbl(argv[1], cmd_emsdp, ARRAY_SIZE(cmd_emsdp)); - /* Strip off leading 'emdk' command */ + /* Strip off leading 'emsdp' command */ argc--; argv++; @@ -92,8 +92,8 @@ static int do_emdk(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) } U_BOOT_CMD( - emdk, CONFIG_SYS_MAXARGS, 0, do_emdk, - "Synopsys EMDK specific commands", + emsdp, CONFIG_SYS_MAXARGS, 0, do_emsdp, + "Synopsys EMSDP specific commands", "rom unlock - Unlock non-volatile memory for writing\n" - "emdk rom lock - Lock non-volatile memory to prevent writing\n" + "emsdp rom lock - Lock non-volatile memory to prevent writing\n" ); |