common.c 1.3 KB
Newer Older
1
/*
2
 * Defines machines for CSR SiRFprimaII
3 4 5 6 7 8 9 10
 *
 * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
 *
 * Licensed under GPLv2 or later.
 */

#include <linux/init.h>
#include <linux/kernel.h>
11
#include <asm/sizes.h>
12 13 14 15 16 17
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <linux/of.h>
#include <linux/of_platform.h>
#include "common.h"

18
static void __init sirfsoc_init_late(void)
19 20 21 22
{
	sirfsoc_pm_init();
}

23 24 25 26 27
static __init void sirfsoc_map_io(void)
{
	sirfsoc_map_lluart();
}

28
#ifdef CONFIG_ARCH_ATLAS6
29
static const char *atlas6_dt_match[] __initconst = {
30 31 32 33 34 35
	"sirf,atlas6",
	NULL
};

DT_MACHINE_START(ATLAS6_DT, "Generic ATLAS6 (Flattened Device Tree)")
	/* Maintainer: Barry Song <baohua.song@csr.com> */
36 37
	.l2c_aux_val	= 0,
	.l2c_aux_mask	= ~0,
38 39 40 41 42 43
	.map_io         = sirfsoc_map_io,
	.init_late	= sirfsoc_init_late,
	.dt_compat      = atlas6_dt_match,
MACHINE_END
#endif

44
#ifdef CONFIG_ARCH_PRIMA2
45
static const char *prima2_dt_match[] __initconst = {
B
Barry Song 已提交
46 47
	"sirf,prima2",
	NULL
48 49
};

50
DT_MACHINE_START(PRIMA2_DT, "Generic PRIMA2 (Flattened Device Tree)")
51
	/* Maintainer: Barry Song <baohua.song@csr.com> */
52 53
	.l2c_aux_val	= 0,
	.l2c_aux_mask	= ~0,
54
	.map_io         = sirfsoc_map_io,
55
	.dma_zone_size	= SZ_256M,
56
	.init_late	= sirfsoc_init_late,
57
	.dt_compat      = prima2_dt_match,
58
MACHINE_END
59
#endif