diff options
author | Kevin | 2014-11-15 09:58:27 +0800 |
---|---|---|
committer | Kevin | 2014-11-15 09:58:27 +0800 |
commit | 392e8802486cb573b916e746010e141a75f507e6 (patch) | |
tree | 50029aca02c81f087b90336e670b44e510782330 /ANDROID_3.4.5/arch/arm/mach-prima2/l2x0.c | |
download | FOSSEE-netbook-kernel-source-392e8802486cb573b916e746010e141a75f507e6.tar.gz FOSSEE-netbook-kernel-source-392e8802486cb573b916e746010e141a75f507e6.tar.bz2 FOSSEE-netbook-kernel-source-392e8802486cb573b916e746010e141a75f507e6.zip |
init android origin source code
Diffstat (limited to 'ANDROID_3.4.5/arch/arm/mach-prima2/l2x0.c')
-rw-r--r-- | ANDROID_3.4.5/arch/arm/mach-prima2/l2x0.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ANDROID_3.4.5/arch/arm/mach-prima2/l2x0.c b/ANDROID_3.4.5/arch/arm/mach-prima2/l2x0.c new file mode 100644 index 00000000..c9983779 --- /dev/null +++ b/ANDROID_3.4.5/arch/arm/mach-prima2/l2x0.c @@ -0,0 +1,31 @@ +/* + * 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> + +static struct of_device_id prima2_l2x0_ids[] = { + { .compatible = "sirf,prima2-pl310-cache" }, + {}, +}; + +static int __init sirfsoc_l2x0_init(void) +{ + struct device_node *np; + + np = of_find_matching_node(NULL, prima2_l2x0_ids); + if (np) { + pr_info("Initializing prima2 L2 cache\n"); + return l2x0_of_init(0x40000, 0); + } + + return 0; +} +early_initcall(sirfsoc_l2x0_init); |