aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/lantiq/Platform
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2011-03-30 09:27:48 +0200
committerRalf Baechle <ralf@linux-mips.org>2011-05-19 09:55:41 +0100
commit8ec6d93508f705dacafd5fcd058c69ef405002f9 (patch)
treeb26de8b55fdae858ac2d1b48b563f0315a6c683a /arch/mips/lantiq/Platform
parent171bb2f19ed6f3627f4f783f658f2f475b2fbd50 (diff)
downloadkernel_samsung_smdk4412-8ec6d93508f705dacafd5fcd058c69ef405002f9.zip
kernel_samsung_smdk4412-8ec6d93508f705dacafd5fcd058c69ef405002f9.tar.gz
kernel_samsung_smdk4412-8ec6d93508f705dacafd5fcd058c69ef405002f9.tar.bz2
MIPS: Lantiq: add SoC specific code for XWAY family
Add support for the Lantiq XWAY family of Mips24KEc SoCs. * Danube (PSB50702) * Twinpass (PSB4000) * AR9 (PSB50802) * Amazon SE (PSB5061) The Amazon SE is a lightweight SoC and has no PCI as well as a different clock. We split the code out into seperate files to handle this. The GPIO pins on the SoCs are multi function and there are several bits we can use to configure the pins. To be as compatible as possible to GPIOLIB we add a function int lq_gpio_request(unsigned int pin, unsigned int alt0, unsigned int alt1, unsigned int dir, const char *name); which lets you configure the 2 "alternate function" bits. This way drivers like PCI can make use of GPIOLIB without a cubersome wrapper. The PLL code inside arch/mips/lantiq/xway/clk-xway.c is voodoo to me. It was taken from a 2.4.20 source tree and was never really changed by me since then. Signed-off-by: John Crispin <blogic@openwrt.org> Signed-off-by: Ralph Hempel <ralph.hempel@lantiq.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2249/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lantiq/Platform')
-rw-r--r--arch/mips/lantiq/Platform1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/lantiq/Platform b/arch/mips/lantiq/Platform
index eef587f..f3dff05 100644
--- a/arch/mips/lantiq/Platform
+++ b/arch/mips/lantiq/Platform
@@ -5,3 +5,4 @@
platform-$(CONFIG_LANTIQ) += lantiq/
cflags-$(CONFIG_LANTIQ) += -I$(srctree)/arch/mips/include/asm/mach-lantiq
load-$(CONFIG_LANTIQ) = 0xffffffff80002000
+cflags-$(CONFIG_SOC_TYPE_XWAY) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/xway