Commit 87a00dc0 authored by Magnus Damm's avatar Magnus Damm Committed by Paul Mundt

sh: Add plat_early_device_setup()

Add a plat_early_device_setup() function to allow
processor-specific code to register Early Platform Data.
Signed-off-by: default avatarMagnus Damm <damm@igel.co.jp>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent eaab8919
...@@ -10,3 +10,5 @@ struct platform_device; ...@@ -10,3 +10,5 @@ struct platform_device;
int platform_resource_setup_memory(struct platform_device *pdev, int platform_resource_setup_memory(struct platform_device *pdev,
char *name, unsigned long memsize); char *name, unsigned long memsize);
void plat_early_device_setup(void);
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include <linux/mmzone.h> #include <linux/mmzone.h>
#include <linux/clk.h> #include <linux/clk.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/platform_device.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/page.h> #include <asm/page.h>
...@@ -328,6 +329,10 @@ static int __init parse_elfcorehdr(char *arg) ...@@ -328,6 +329,10 @@ static int __init parse_elfcorehdr(char *arg)
early_param("elfcorehdr", parse_elfcorehdr); early_param("elfcorehdr", parse_elfcorehdr);
#endif #endif
void __init __attribute__ ((weak)) plat_early_device_setup(void)
{
}
void __init setup_arch(char **cmdline_p) void __init setup_arch(char **cmdline_p)
{ {
enable_mmu(); enable_mmu();
...@@ -381,6 +386,8 @@ void __init setup_arch(char **cmdline_p) ...@@ -381,6 +386,8 @@ void __init setup_arch(char **cmdline_p)
parse_early_param(); parse_early_param();
plat_early_device_setup();
sh_mv_setup(); sh_mv_setup();
/* /*
......
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