aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/lantiq/prom.h
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2011-03-30 09:27:47 +0200
committerRalf Baechle <ralf@linux-mips.org>2011-05-19 09:55:41 +0100
commit171bb2f19ed6f3627f4f783f658f2f475b2fbd50 (patch)
treedd3d282809d7f8cae07485417f149660572743fe /arch/mips/lantiq/prom.h
parentc0a5afb9bcf6b5aa5685e4fcf1282cad5fab3d91 (diff)
downloadkernel_samsung_smdk4412-171bb2f19ed6f3627f4f783f658f2f475b2fbd50.zip
kernel_samsung_smdk4412-171bb2f19ed6f3627f4f783f658f2f475b2fbd50.tar.gz
kernel_samsung_smdk4412-171bb2f19ed6f3627f4f783f658f2f475b2fbd50.tar.bz2
MIPS: Lantiq: Add initial support for Lantiq SoCs
Add initial support for Mips based SoCs made by Lantiq. This series will add support for the XWAY family. The series allows booting a minimal system using a initramfs or NOR. Missing drivers and support for Amazon and GPON family will be provided in a later series. [Ralf: Remove some cargo cult programming and fixed formatting.] Signed-off-by: John Crispin <blogic@openwrt.org> Signed-off-by: Ralph Hempel <ralph.hempel@lantiq.com> Signed-off-by: David Daney <ddaney@caviumnetworks.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2252/ Patchwork: https://patchwork.linux-mips.org/patch/2371/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lantiq/prom.h')
-rw-r--r--arch/mips/lantiq/prom.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/mips/lantiq/prom.h b/arch/mips/lantiq/prom.h
new file mode 100644
index 0000000..4165ad1
--- /dev/null
+++ b/arch/mips/lantiq/prom.h
@@ -0,0 +1,24 @@
+/*
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+ * by the Free Software Foundation.
+ *
+ * Copyright (C) 2010 John Crispin <blogic@openwrt.org>
+ */
+
+#ifndef _LTQ_PROM_H__
+#define _LTQ_PROM_H__
+
+#define LTQ_SYS_TYPE_LEN 0x100
+
+struct ltq_soc_info {
+ unsigned char *name;
+ unsigned int rev;
+ unsigned int partnum;
+ unsigned int type;
+ unsigned char sys_type[LTQ_SYS_TYPE_LEN];
+};
+
+extern void ltq_soc_detect(struct ltq_soc_info *i);
+
+#endif