2014-10-29 02:18:38 +03:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
2014-10-29 02:18:43 +03:00
|
|
|
#include <linux/serial_8250.h>
|
2014-10-29 02:18:38 +03:00
|
|
|
#include <asm/bootinfo.h>
|
|
|
|
|
2014-10-29 02:18:44 +03:00
|
|
|
#include <ath25_platform.h>
|
2014-10-29 02:18:38 +03:00
|
|
|
#include "devices.h"
|
2014-10-29 02:18:43 +03:00
|
|
|
#include "ar5312.h"
|
|
|
|
#include "ar2315.h"
|
2014-10-29 02:18:38 +03:00
|
|
|
|
2014-10-29 02:18:44 +03:00
|
|
|
struct ar231x_board_config ath25_board;
|
2014-10-29 02:18:45 +03:00
|
|
|
enum ath25_soc_type ath25_soc = ATH25_SOC_UNKNOWN;
|
|
|
|
|
|
|
|
static const char * const soc_type_strings[] = {
|
|
|
|
[ATH25_SOC_AR5312] = "Atheros AR5312",
|
|
|
|
[ATH25_SOC_AR2312] = "Atheros AR2312",
|
|
|
|
[ATH25_SOC_AR2313] = "Atheros AR2313",
|
|
|
|
[ATH25_SOC_AR2315] = "Atheros AR2315",
|
|
|
|
[ATH25_SOC_AR2316] = "Atheros AR2316",
|
|
|
|
[ATH25_SOC_AR2317] = "Atheros AR2317",
|
|
|
|
[ATH25_SOC_AR2318] = "Atheros AR2318",
|
|
|
|
[ATH25_SOC_UNKNOWN] = "Atheros (unknown)",
|
|
|
|
};
|
2014-10-29 02:18:44 +03:00
|
|
|
|
2014-10-29 02:18:38 +03:00
|
|
|
const char *get_system_type(void)
|
|
|
|
{
|
2014-10-29 02:18:45 +03:00
|
|
|
if ((ath25_soc >= ARRAY_SIZE(soc_type_strings)) ||
|
|
|
|
!soc_type_strings[ath25_soc])
|
|
|
|
return soc_type_strings[ATH25_SOC_UNKNOWN];
|
|
|
|
return soc_type_strings[ath25_soc];
|
2014-10-29 02:18:38 +03:00
|
|
|
}
|
2014-10-29 02:18:43 +03:00
|
|
|
|
|
|
|
void __init ath25_serial_setup(u32 mapbase, int irq, unsigned int uartclk)
|
|
|
|
{
|
|
|
|
struct uart_port s;
|
|
|
|
|
|
|
|
memset(&s, 0, sizeof(s));
|
|
|
|
|
|
|
|
s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP;
|
|
|
|
s.iotype = UPIO_MEM32;
|
|
|
|
s.irq = irq;
|
|
|
|
s.regshift = 2;
|
|
|
|
s.mapbase = mapbase;
|
|
|
|
s.uartclk = uartclk;
|
|
|
|
|
|
|
|
early_serial_setup(&s);
|
|
|
|
}
|
|
|
|
|
2014-10-29 02:18:44 +03:00
|
|
|
static int __init ath25_register_devices(void)
|
|
|
|
{
|
|
|
|
if (is_ar5312())
|
|
|
|
ar5312_init_devices();
|
|
|
|
else
|
|
|
|
ar2315_init_devices();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
device_initcall(ath25_register_devices);
|
|
|
|
|
2014-10-29 02:18:43 +03:00
|
|
|
static int __init ath25_arch_init(void)
|
|
|
|
{
|
|
|
|
if (is_ar5312())
|
|
|
|
ar5312_arch_init();
|
|
|
|
else
|
|
|
|
ar2315_arch_init();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
arch_initcall(ath25_arch_init);
|