diff options
Diffstat (limited to 'arch/mips/qemu')
| -rw-r--r-- | arch/mips/qemu/Makefile | 3 | ||||
| -rw-r--r-- | arch/mips/qemu/q-console.c | 26 | ||||
| -rw-r--r-- | arch/mips/qemu/q-firmware.c | 6 | ||||
| -rw-r--r-- | arch/mips/qemu/q-setup.c | 3 |
4 files changed, 34 insertions, 4 deletions
diff --git a/arch/mips/qemu/Makefile b/arch/mips/qemu/Makefile index cec24c117f6e..2ba4ef34b4a7 100644 --- a/arch/mips/qemu/Makefile +++ b/arch/mips/qemu/Makefile | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | obj-y = q-firmware.o q-irq.o q-mem.o q-setup.o q-reset.o | 5 | obj-y = q-firmware.o q-irq.o q-mem.o q-setup.o q-reset.o |
| 6 | 6 | ||
| 7 | obj-$(CONFIG_SMP) += q-smp.o | 7 | obj-$(CONFIG_EARLY_PRINTK) += q-console.o |
| 8 | obj-$(CONFIG_SMP) += q-smp.o | ||
| 8 | 9 | ||
| 9 | EXTRA_CFLAGS += -Werror | 10 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/mips/qemu/q-console.c b/arch/mips/qemu/q-console.c new file mode 100644 index 000000000000..81101ae5017a --- /dev/null +++ b/arch/mips/qemu/q-console.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | #include <linux/console.h> | ||
| 2 | #include <linux/init.h> | ||
| 3 | #include <linux/serial_reg.h> | ||
| 4 | #include <asm/io.h> | ||
| 5 | |||
| 6 | #define PORT(offset) (0x3f8 + (offset)) | ||
| 7 | |||
| 8 | static inline unsigned int serial_in(int offset) | ||
| 9 | { | ||
| 10 | return inb(PORT(offset)); | ||
| 11 | } | ||
| 12 | |||
| 13 | static inline void serial_out(int offset, int value) | ||
| 14 | { | ||
| 15 | outb(value, PORT(offset)); | ||
| 16 | } | ||
| 17 | |||
| 18 | int prom_putchar(char c) | ||
| 19 | { | ||
| 20 | while ((serial_in(UART_LSR) & UART_LSR_THRE) == 0) | ||
| 21 | ; | ||
| 22 | |||
| 23 | serial_out(UART_TX, c); | ||
| 24 | |||
| 25 | return 1; | ||
| 26 | } | ||
diff --git a/arch/mips/qemu/q-firmware.c b/arch/mips/qemu/q-firmware.c index c2239b417587..3ed43f416cd1 100644 --- a/arch/mips/qemu/q-firmware.c +++ b/arch/mips/qemu/q-firmware.c | |||
| @@ -2,6 +2,9 @@ | |||
| 2 | #include <linux/string.h> | 2 | #include <linux/string.h> |
| 3 | #include <asm/addrspace.h> | 3 | #include <asm/addrspace.h> |
| 4 | #include <asm/bootinfo.h> | 4 | #include <asm/bootinfo.h> |
| 5 | #include <asm/io.h> | ||
| 6 | |||
| 7 | #define QEMU_PORT_BASE 0xb4000000 | ||
| 5 | 8 | ||
| 6 | void __init prom_init(void) | 9 | void __init prom_init(void) |
| 7 | { | 10 | { |
| @@ -15,4 +18,7 @@ void __init prom_init(void) | |||
| 15 | } else { | 18 | } else { |
| 16 | add_memory_region(0x0<<20, 0x10<<20, BOOT_MEM_RAM); | 19 | add_memory_region(0x0<<20, 0x10<<20, BOOT_MEM_RAM); |
| 17 | } | 20 | } |
| 21 | |||
| 22 | |||
| 23 | set_io_port_base(QEMU_PORT_BASE); | ||
| 18 | } | 24 | } |
diff --git a/arch/mips/qemu/q-setup.c b/arch/mips/qemu/q-setup.c index 23d34c1917c0..969cedc8d8b9 100644 --- a/arch/mips/qemu/q-setup.c +++ b/arch/mips/qemu/q-setup.c | |||
| @@ -6,8 +6,6 @@ | |||
| 6 | 6 | ||
| 7 | extern void qemu_reboot_setup(void); | 7 | extern void qemu_reboot_setup(void); |
| 8 | 8 | ||
| 9 | #define QEMU_PORT_BASE 0xb4000000 | ||
| 10 | |||
| 11 | const char *get_system_type(void) | 9 | const char *get_system_type(void) |
| 12 | { | 10 | { |
| 13 | return "Qemu"; | 11 | return "Qemu"; |
| @@ -20,6 +18,5 @@ void __init plat_time_init(void) | |||
| 20 | 18 | ||
| 21 | void __init plat_mem_setup(void) | 19 | void __init plat_mem_setup(void) |
| 22 | { | 20 | { |
| 23 | set_io_port_base(QEMU_PORT_BASE); | ||
| 24 | qemu_reboot_setup(); | 21 | qemu_reboot_setup(); |
| 25 | } | 22 | } |
