qemu-malta: rename to just "malta"

This is in preparation for adapting this board to function correctly on
a physical MIPS Malta board. The board is moved into an "imgtec" vendor
directory at the same time in order to ready us for any other boards
supported by Imagination in the future.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
This commit is contained in:
Paul Burton 2013-11-09 10:22:08 +00:00 committed by Daniel Schwierzeck
parent fa5cec0321
commit 7a9d109b00
7 changed files with 16 additions and 16 deletions

View File

@ -51,7 +51,7 @@ _start:
*/
.word CONFIG_SYS_XWAY_EBU_BOOTCFG
.word 0x0
#elif defined(CONFIG_QEMU_MALTA)
#elif defined(CONFIG_MALTA)
/*
* Linux expects the Board ID here.
*/

View File

@ -17,10 +17,10 @@ DECLARE_GLOBAL_DATA_PTR;
#define LINUX_MAX_ENVS 256
#define LINUX_MAX_ARGS 256
#if defined(CONFIG_QEMU_MALTA)
#define mips_boot_qemu_malta 1
#if defined(CONFIG_MALTA)
#define mips_boot_malta 1
#else
#define mips_boot_qemu_malta 0
#define mips_boot_malta 0
#endif
static int linux_argc;
@ -139,7 +139,7 @@ static void linux_env_set(const char *env_name, const char *env_val)
strcpy(linux_env_p, env_name);
linux_env_p += strlen(env_name);
if (mips_boot_qemu_malta) {
if (mips_boot_malta) {
linux_env_p++;
linux_env[++linux_env_idx] = linux_env_p;
} else {
@ -196,7 +196,7 @@ static void boot_prep_linux(bootm_headers_t *images)
if (cp)
linux_env_set("eth1addr", cp);
if (mips_boot_qemu_malta)
if (mips_boot_malta)
linux_env_set("modetty0", "38400n8r");
}
@ -210,7 +210,7 @@ static void boot_jump_linux(bootm_headers_t *images)
bootstage_mark(BOOTSTAGE_ID_RUN_OS);
if (mips_boot_qemu_malta)
if (mips_boot_malta)
linux_extra = gd->ram_size;
/* we assume that the kernel is in place */

View File

@ -5,5 +5,5 @@
# SPDX-License-Identifier: GPL-2.0+
#
obj-y = qemu-malta.o
obj-y = malta.o
obj-y += lowlevel_init.o

View File

@ -480,10 +480,10 @@ Active m68k mcf547x_8x - freescale m548xevb
Active m68k mcf547x_8x - freescale m548xevb M5485GFE M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=4,SYS_DRAMSZ=64 TsiChung Liew <Tsi-Chung.Liew@freescale.com>
Active m68k mcf547x_8x - freescale m548xevb M5485HFE M5485EVB:SYS_BUSCLK=100000000,SYS_BOOTSZ=2,SYS_DRAMSZ=64,SYS_NOR1SZ=16,SYS_VIDEO TsiChung Liew <Tsi-Chung.Liew@freescale.com>
Active microblaze microblaze - xilinx microblaze-generic microblaze-generic - Michal Simek <monstr@monstr.eu>
Active mips mips32 - - qemu-malta qemu_malta qemu-malta:MIPS32,SYS_BIG_ENDIAN -
Active mips mips32 - - qemu-malta qemu_maltael qemu-malta:MIPS32,SYS_LITTLE_ENDIAN -
Active mips mips32 - - qemu-mips qemu_mips qemu-mips:SYS_BIG_ENDIAN Vlad Lungu <vlad.lungu@windriver.com>
Active mips mips32 - - qemu-mips qemu_mipsel qemu-mips:SYS_LITTLE_ENDIAN -
Active mips mips32 - imgtec malta malta malta:MIPS32,SYS_BIG_ENDIAN -
Active mips mips32 - imgtec malta maltael malta:MIPS32,SYS_LITTLE_ENDIAN -
Active mips mips32 - micronas vct vct_platinum vct:VCT_PLATINUM -
Active mips mips32 - micronas vct vct_platinum_onenand vct:VCT_PLATINUM,VCT_ONENAND -
Active mips mips32 - micronas vct vct_platinum_onenand_small vct:VCT_PLATINUM,VCT_ONENAND,VCT_SMALL_IMAGE -

View File

@ -4,8 +4,8 @@
* SPDX-License-Identifier: GPL-2.0
*/
#ifndef _QEMU_MALTA_CONFIG_H
#define _QEMU_MALTA_CONFIG_H
#ifndef _MALTA_CONFIG_H
#define _MALTA_CONFIG_H
#include <asm/addrspace.h>
#include <asm/malta.h>
@ -13,7 +13,7 @@
/*
* System configuration
*/
#define CONFIG_QEMU_MALTA
#define CONFIG_MALTA
#define CONFIG_PCI
#define CONFIG_PCI_GT64120
@ -54,9 +54,9 @@
* Console configuration
*/
#if defined(CONFIG_SYS_LITTLE_ENDIAN)
#define CONFIG_SYS_PROMPT "qemu-maltael # "
#define CONFIG_SYS_PROMPT "maltael # "
#else
#define CONFIG_SYS_PROMPT "qemu-malta # "
#define CONFIG_SYS_PROMPT "malta # "
#endif
#define CONFIG_SYS_CBSIZE 256
@ -110,4 +110,4 @@
#define CONFIG_SYS_LONGHELP /* verbose help, undef to save memory */
#endif /* _QEMU_MALTA_CONFIG_H */
#endif /* _MALTA_CONFIG_H */