forked from Minki/linux
30ad29bb48
Currently, code of Loongson-2/3 is under loongson directory and code of Loongson-1 is under loongson1 directory. Besides, there are Kconfig options such as MACH_LOONGSON and MACH_LOONGSON1. This naming style is very ugly and confusing. Since Loongson-2/3 are both 64-bit general- purpose CPU while Loongson-1 is 32-bit SoC, we rename both file names and Kconfig symbols from loongson/loongson1 to loongson64/loongson32. [ralf@linux-mips.org: Resolve a number of simple conflicts.] Signed-off-by: Huacai Chen <chenhc@lemote.com> Cc: Steven J. Hill <Steven.Hill@imgtec.com> Cc: linux-mips@linux-mips.org Cc: Fuxin Zhang <zhangfx@lemote.com> Cc: Zhangjin Wu <wuzhangjin@gmail.com> Cc: Kelvin Cheung <keguang.zhang@gmail.com> Patchwork: https://patchwork.linux-mips.org/patch/9790/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2009 Lemote Inc.
|
|
* Author: Wu Zhangjin, wuzhangjin@gmail.com
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <asm/bootinfo.h>
|
|
|
|
#include <loongson.h>
|
|
|
|
/* raw */
|
|
unsigned long loongson_uart_base[MAX_UARTS] = {};
|
|
/* ioremapped */
|
|
unsigned long _loongson_uart_base[MAX_UARTS] = {};
|
|
|
|
EXPORT_SYMBOL(loongson_uart_base);
|
|
EXPORT_SYMBOL(_loongson_uart_base);
|
|
|
|
void prom_init_loongson_uart_base(void)
|
|
{
|
|
switch (mips_machtype) {
|
|
case MACH_LOONGSON_GENERIC:
|
|
/* The CPU provided serial port (CPU) */
|
|
loongson_uart_base[0] = LOONGSON_REG_BASE + 0x1e0;
|
|
break;
|
|
case MACH_LEMOTE_FL2E:
|
|
loongson_uart_base[0] = LOONGSON_PCIIO_BASE + 0x3f8;
|
|
break;
|
|
case MACH_LEMOTE_FL2F:
|
|
case MACH_LEMOTE_LL2F:
|
|
loongson_uart_base[0] = LOONGSON_PCIIO_BASE + 0x2f8;
|
|
break;
|
|
case MACH_LEMOTE_ML2F7:
|
|
case MACH_LEMOTE_YL2F89:
|
|
case MACH_DEXXON_GDIUM2F10:
|
|
case MACH_LEMOTE_NAS:
|
|
default:
|
|
/* The CPU provided serial port (LPC) */
|
|
loongson_uart_base[0] = LOONGSON_LIO1_BASE + 0x3f8;
|
|
break;
|
|
}
|
|
|
|
_loongson_uart_base[0] =
|
|
(unsigned long)ioremap_nocache(loongson_uart_base[0], 8);
|
|
}
|