Commit e8b8ca8c authored by John Crispin's avatar John Crispin Committed by Ralf Baechle

MIPS: lantiq: export soc type

The voice and dsl drivers need to know which SoC we are running on.
Signed-off-by: default avatarÁlvaro Fernández Rojas <noltari@gmail.com>
Patchwork: http://patchwork.linux-mips.org/patch/8046/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 276229d2
...@@ -48,6 +48,8 @@ extern struct clk *clk_get_ppe(void); ...@@ -48,6 +48,8 @@ extern struct clk *clk_get_ppe(void);
extern unsigned char ltq_boot_select(void); extern unsigned char ltq_boot_select(void);
/* find out what caused the last cpu reset */ /* find out what caused the last cpu reset */
extern int ltq_reset_cause(void); extern int ltq_reset_cause(void);
/* find out the soc type */
extern int ltq_soc_type(void);
#define IOPORT_RESOURCE_START 0x10000000 #define IOPORT_RESOURCE_START 0x10000000
#define IOPORT_RESOURCE_END 0xffffffff #define IOPORT_RESOURCE_END 0xffffffff
......
...@@ -36,6 +36,11 @@ const char *get_system_type(void) ...@@ -36,6 +36,11 @@ const char *get_system_type(void)
return soc_info.sys_type; return soc_info.sys_type;
} }
int ltq_soc_type(void)
{
return soc_info.type;
}
void prom_free_prom_memory(void) void prom_free_prom_memory(void)
{ {
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment