l2x0.c 655 字节
Newer Older
R
Rongjun Ying 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * l2 cache initialization for CSR SiRFprimaII
 *
 * 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>
#include <linux/of.h>
#include <asm/hardware/cache-l2x0.h>

14 15 16
static struct of_device_id prima2_l2x0_ids[]  = {
	{ .compatible = "sirf,prima2-pl310-cache" },
	{},
R
Rongjun Ying 已提交
17 18
};

19
static int __init sirfsoc_l2x0_init(void)
R
Rongjun Ying 已提交
20 21 22
{
	struct device_node *np;

23 24 25 26
	np = of_find_matching_node(NULL, prima2_l2x0_ids);
	if (np) {
		pr_info("Initializing prima2 L2 cache\n");
		return l2x0_of_init(0x40000, 0);
R
Rongjun Ying 已提交
27 28 29 30
	}

	return 0;
}
31
early_initcall(sirfsoc_l2x0_init);