common.c 1.1 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
#ifdef CONFIG_ARCH_ATLAS6
24
static const char *atlas6_dt_match[] __initconst = {
25 26 27 28 29 30
	"sirf,atlas6",
	NULL
};

DT_MACHINE_START(ATLAS6_DT, "Generic ATLAS6 (Flattened Device Tree)")
	/* Maintainer: Barry Song <baohua.song@csr.com> */
31 32
	.l2c_aux_val	= 0,
	.l2c_aux_mask	= ~0,
33 34 35 36 37
	.init_late	= sirfsoc_init_late,
	.dt_compat      = atlas6_dt_match,
MACHINE_END
#endif

38
#ifdef CONFIG_ARCH_PRIMA2
39
static const char *prima2_dt_match[] __initconst = {
B
Barry Song 已提交
40 41
	"sirf,prima2",
	NULL
42 43
};

44
DT_MACHINE_START(PRIMA2_DT, "Generic PRIMA2 (Flattened Device Tree)")
45
	/* Maintainer: Barry Song <baohua.song@csr.com> */
46 47
	.l2c_aux_val	= 0,
	.l2c_aux_mask	= ~0,
48
	.dma_zone_size	= SZ_256M,
49
	.init_late	= sirfsoc_init_late,
50
	.dt_compat      = prima2_dt_match,
51
MACHINE_END
52
#endif