2009-11-06 18:35:34 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Lemote Inc.
|
2010-01-04 17:16:51 +08:00
|
|
|
* Author: Wu Zhangjin, wuzhangjin@gmail.com
|
2009-11-06 18:35:34 +08:00
|
|
|
*
|
2013-01-22 19:59:30 +08:00
|
|
|
* 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
|
2009-11-06 18:35:34 +08:00
|
|
|
* 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>
|
|
|
|
|
2009-11-28 14:21:50 +08:00
|
|
|
/* raw */
|
2014-11-04 14:13:27 +08:00
|
|
|
unsigned long loongson_uart_base[MAX_UARTS] = {};
|
|
|
|
/* ioremapped */
|
|
|
|
unsigned long _loongson_uart_base[MAX_UARTS] = {};
|
|
|
|
|
2009-11-28 14:21:50 +08:00
|
|
|
EXPORT_SYMBOL(loongson_uart_base);
|
2014-11-04 14:13:27 +08:00
|
|
|
EXPORT_SYMBOL(_loongson_uart_base);
|
2009-11-06 18:35:34 +08:00
|
|
|
|
2009-11-28 14:21:50 +08:00
|
|
|
void prom_init_loongson_uart_base(void)
|
2009-11-06 18:35:34 +08:00
|
|
|
{
|
2009-11-28 14:21:50 +08:00
|
|
|
switch (mips_machtype) {
|
2014-11-04 14:13:27 +08:00
|
|
|
case MACH_LOONGSON_GENERIC:
|
|
|
|
/* The CPU provided serial port (CPU) */
|
|
|
|
loongson_uart_base[0] = LOONGSON_REG_BASE + 0x1e0;
|
|
|
|
break;
|
2009-11-28 14:21:50 +08:00
|
|
|
case MACH_LEMOTE_FL2E:
|
2014-11-04 14:13:27 +08:00
|
|
|
loongson_uart_base[0] = LOONGSON_PCIIO_BASE + 0x3f8;
|
2009-11-28 14:21:50 +08:00
|
|
|
break;
|
|
|
|
case MACH_LEMOTE_FL2F:
|
|
|
|
case MACH_LEMOTE_LL2F:
|
2014-11-04 14:13:27 +08:00
|
|
|
loongson_uart_base[0] = LOONGSON_PCIIO_BASE + 0x2f8;
|
2009-11-28 14:21:50 +08:00
|
|
|
break;
|
|
|
|
case MACH_LEMOTE_ML2F7:
|
|
|
|
case MACH_LEMOTE_YL2F89:
|
|
|
|
case MACH_DEXXON_GDIUM2F10:
|
|
|
|
case MACH_LEMOTE_NAS:
|
|
|
|
default:
|
2014-03-21 18:44:05 +08:00
|
|
|
/* The CPU provided serial port (LPC) */
|
2014-11-04 14:13:27 +08:00
|
|
|
loongson_uart_base[0] = LOONGSON_LIO1_BASE + 0x3f8;
|
2014-03-21 18:44:05 +08:00
|
|
|
break;
|
2009-11-28 14:21:50 +08:00
|
|
|
}
|
|
|
|
|
2014-11-04 14:13:27 +08:00
|
|
|
_loongson_uart_base[0] =
|
|
|
|
(unsigned long)ioremap_nocache(loongson_uart_base[0], 8);
|
2009-11-06 18:35:34 +08:00
|
|
|
}
|