blob: d69ea54bc3d19a00fa4553cdbfa27dcf8272af81 [file] [log] [blame]
Wu Zhangjina3ed4952009-11-06 18:35:34 +08001/*
2 * Copyright (C) 2009 Lemote Inc.
Wu Zhangjinf7a904d2010-01-04 17:16:51 +08003 * Author: Wu Zhangjin, wuzhangjin@gmail.com
Wu Zhangjina3ed4952009-11-06 18:35:34 +08004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 */
10
11#include <linux/module.h>
12#include <asm/bootinfo.h>
13
14#include <loongson.h>
15
Wu Zhangjinc3d8d852009-11-28 14:21:50 +080016/* ioremapped */
17unsigned long _loongson_uart_base;
Wu Zhangjina3ed4952009-11-06 18:35:34 +080018EXPORT_SYMBOL(_loongson_uart_base);
Wu Zhangjinc3d8d852009-11-28 14:21:50 +080019/* raw */
20unsigned long loongson_uart_base;
21EXPORT_SYMBOL(loongson_uart_base);
Wu Zhangjina3ed4952009-11-06 18:35:34 +080022
Wu Zhangjinc3d8d852009-11-28 14:21:50 +080023void prom_init_loongson_uart_base(void)
Wu Zhangjina3ed4952009-11-06 18:35:34 +080024{
Wu Zhangjinc3d8d852009-11-28 14:21:50 +080025 switch (mips_machtype) {
26 case MACH_LEMOTE_FL2E:
27 loongson_uart_base = LOONGSON_PCIIO_BASE + 0x3f8;
28 break;
29 case MACH_LEMOTE_FL2F:
30 case MACH_LEMOTE_LL2F:
31 loongson_uart_base = LOONGSON_PCIIO_BASE + 0x2f8;
32 break;
33 case MACH_LEMOTE_ML2F7:
34 case MACH_LEMOTE_YL2F89:
35 case MACH_DEXXON_GDIUM2F10:
36 case MACH_LEMOTE_NAS:
37 default:
38 /* The CPU provided serial port */
39 loongson_uart_base = LOONGSON_LIO1_BASE + 0x3f8;
40 break;
41 }
42
Wu Zhangjina3ed4952009-11-06 18:35:34 +080043 _loongson_uart_base =
Wu Zhangjinc3d8d852009-11-28 14:21:50 +080044 (unsigned long)ioremap_nocache(loongson_uart_base, 8);
Wu Zhangjina3ed4952009-11-06 18:35:34 +080045}