aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-mxc91231/magx-zn5.c
blob: 395d83be8c98ed9b90590051f0744789d7a74778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * Copyright 2009 Dmitriy Taychenachev <dimichxp@gmail.com>
 *
 * This file is released under the GPLv2 or later.
 */

#include <linux/irq.h>
#include <linux/init.h>
#include <linux/device.h>

#include <asm/mach-types.h>
#include <asm/mach/time.h>
#include <asm/mach/arch.h>

#include <mach/common.h>
#include <mach/hardware.h>
#include <mach/iomux-mxc91231.h>
#include <mach/mmc.h>
#include <mach/imx-uart.h>

#include "devices.h"

static struct imxuart_platform_data uart_pdata = {
};

static struct imxmmc_platform_data sdhc_pdata = {
};

static void __init zn5_init(void)
{
	pm_power_off = mxc91231_power_off;

	mxc_iomux_alloc_pin(MXC91231_PIN_SP_USB_DAT_VP__RXD2, "uart2-rx");
	mxc_iomux_alloc_pin(MXC91231_PIN_SP_USB_SE0_VM__TXD2, "uart2-tx");

	mxc_register_device(&mxc_uart_device1, &uart_pdata);
	mxc_register_device(&mxc_uart_device0, &uart_pdata);

	mxc_register_device(&mxc_sdhc_device0, &sdhc_pdata);

	mxc_register_device(&mxc_wdog_device0, NULL);

	return;
}

static void __init zn5_timer_init(void)
{
	mxc91231_clocks_init(26000000); /* 26mhz ckih */
}

struct sys_timer zn5_timer = {
	.init = zn5_timer_init,
};

MACHINE_START(MAGX_ZN5, "Motorola Zn5")
	.boot_params	= MXC91231_PHYS_OFFSET + 0x100,
	.map_io		= mxc91231_map_io,
	.init_irq	= mxc91231_init_irq,
	.timer		= &zn5_timer,
	.init_machine	= zn5_init,
MACHINE_END