diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2013-01-22 06:30:52 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2013-02-15 12:45:55 -0500 |
commit | 999159a5381bff3bd6f688c5d20fbec9d8789e53 (patch) | |
tree | d54af343e2fa905b3d97d9dd87d763a43b256067 /arch/arc/kernel | |
parent | ee36d1722112f33725ec1a7fc02f6c46e630fd27 (diff) |
ARC: [DeviceTree] Basic support
This is minimal infrastructure needed for devicetree work.
It uses an a sample "skeleton" devicetree - embedded in kernel image -
to print the board, manufacturer by parsing the top-level "compatible"
string.
As of now we don't need any additional "board" specific "machine_desc".
TODO: support interpreting the command line as boot-loader passed dtb
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: devicetree-discuss@lists.ozlabs.org
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: James Hogan <james.hogan@imgtec.com>
Reviewed-by: Rob Herring <rob.herring@calxeda.com>
Reviewed-by: James Hogan <james.hogan@imgtec.com>
Diffstat (limited to 'arch/arc/kernel')
-rw-r--r-- | arch/arc/kernel/Makefile | 1 | ||||
-rw-r--r-- | arch/arc/kernel/devtree.c | 64 | ||||
-rw-r--r-- | arch/arc/kernel/setup.c | 9 |
3 files changed, 74 insertions, 0 deletions
diff --git a/arch/arc/kernel/Makefile b/arch/arc/kernel/Makefile index 6d834312f755..c9ec0662a4ec 100644 --- a/arch/arc/kernel/Makefile +++ b/arch/arc/kernel/Makefile | |||
@@ -7,6 +7,7 @@ | |||
7 | 7 | ||
8 | obj-y := arcksyms.o setup.o irq.o time.o reset.o ptrace.o entry.o process.o | 8 | obj-y := arcksyms.o setup.o irq.o time.o reset.o ptrace.o entry.o process.o |
9 | obj-y += signal.o traps.o sys.o troubleshoot.o stacktrace.o clk.o | 9 | obj-y += signal.o traps.o sys.o troubleshoot.o stacktrace.o clk.o |
10 | obj-y += devtree.o | ||
10 | 11 | ||
11 | obj-$(CONFIG_ARC_FPU_SAVE_RESTORE) += fpu.o | 12 | obj-$(CONFIG_ARC_FPU_SAVE_RESTORE) += fpu.o |
12 | CFLAGS_fpu.o += -mdpfp | 13 | CFLAGS_fpu.o += -mdpfp |
diff --git a/arch/arc/kernel/devtree.c b/arch/arc/kernel/devtree.c new file mode 100644 index 000000000000..48e157efad15 --- /dev/null +++ b/arch/arc/kernel/devtree.c | |||
@@ -0,0 +1,64 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com) | ||
3 | * | ||
4 | * Based on reduced version of METAG | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | |||
12 | #include <linux/init.h> | ||
13 | #include <linux/reboot.h> | ||
14 | #include <linux/memblock.h> | ||
15 | #include <linux/of.h> | ||
16 | #include <linux/of_fdt.h> | ||
17 | #include <asm/prom.h> | ||
18 | |||
19 | /* called from unflatten_device_tree() to bootstrap devicetree itself */ | ||
20 | void * __init early_init_dt_alloc_memory_arch(u64 size, u64 align) | ||
21 | { | ||
22 | return __va(memblock_alloc(size, align)); | ||
23 | } | ||
24 | |||
25 | /** | ||
26 | * setup_machine_fdt - Machine setup when an dtb was passed to the kernel | ||
27 | * @dt: virtual address pointer to dt blob | ||
28 | * | ||
29 | * If a dtb was passed to the kernel, then use it to choose the correct | ||
30 | * machine_desc and to setup the system. | ||
31 | */ | ||
32 | int __init setup_machine_fdt(void *dt) | ||
33 | { | ||
34 | struct boot_param_header *devtree = dt; | ||
35 | unsigned long dt_root; | ||
36 | char *model, *compat; | ||
37 | char manufacturer[16]; | ||
38 | |||
39 | /* check device tree validity */ | ||
40 | if (be32_to_cpu(devtree->magic) != OF_DT_HEADER) | ||
41 | return 1; | ||
42 | |||
43 | /* Search the mdescs for the 'best' compatible value match */ | ||
44 | initial_boot_params = devtree; | ||
45 | dt_root = of_get_flat_dt_root(); | ||
46 | |||
47 | /* compat = "<manufacturer>,<model>" */ | ||
48 | compat = of_get_flat_dt_prop(dt_root, "compatible", NULL); | ||
49 | if (!compat) | ||
50 | compat = "<unknown>"; | ||
51 | |||
52 | model = strchr(compat, ','); | ||
53 | if (model) | ||
54 | model++; | ||
55 | |||
56 | strlcpy(manufacturer, compat, model ? model - compat : strlen(compat)); | ||
57 | |||
58 | pr_info("Board \"%s\" from %s (Manufacturer)\n", model, manufacturer); | ||
59 | |||
60 | /* Retrieve various information from the /chosen node */ | ||
61 | of_scan_flat_dt(early_init_dt_scan_chosen, boot_command_line); | ||
62 | |||
63 | return 0; | ||
64 | } | ||
diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index 82ac20603398..27aebd6d9513 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c | |||
@@ -13,6 +13,8 @@ | |||
13 | #include <linux/console.h> | 13 | #include <linux/console.h> |
14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
15 | #include <linux/cpu.h> | 15 | #include <linux/cpu.h> |
16 | #include <linux/of_fdt.h> | ||
17 | #include <asm/sections.h> | ||
16 | #include <asm/arcregs.h> | 18 | #include <asm/arcregs.h> |
17 | #include <asm/tlb.h> | 19 | #include <asm/tlb.h> |
18 | #include <asm/cache.h> | 20 | #include <asm/cache.h> |
@@ -20,6 +22,7 @@ | |||
20 | #include <asm/page.h> | 22 | #include <asm/page.h> |
21 | #include <asm/irq.h> | 23 | #include <asm/irq.h> |
22 | #include <asm/arcregs.h> | 24 | #include <asm/arcregs.h> |
25 | #include <asm/prom.h> | ||
23 | 26 | ||
24 | #define FIX_PTR(x) __asm__ __volatile__(";" : "+r"(x)) | 27 | #define FIX_PTR(x) __asm__ __volatile__(";" : "+r"(x)) |
25 | 28 | ||
@@ -57,6 +60,8 @@ void __init __attribute__((weak)) arc_platform_early_init(void) | |||
57 | 60 | ||
58 | void __init setup_arch(char **cmdline_p) | 61 | void __init setup_arch(char **cmdline_p) |
59 | { | 62 | { |
63 | int rc; | ||
64 | |||
60 | #ifdef CONFIG_CMDLINE_UBOOT | 65 | #ifdef CONFIG_CMDLINE_UBOOT |
61 | /* Make sure that a whitespace is inserted before */ | 66 | /* Make sure that a whitespace is inserted before */ |
62 | strlcat(command_line, " ", sizeof(command_line)); | 67 | strlcat(command_line, " ", sizeof(command_line)); |
@@ -71,6 +76,8 @@ void __init setup_arch(char **cmdline_p) | |||
71 | strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); | 76 | strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); |
72 | *cmdline_p = command_line; | 77 | *cmdline_p = command_line; |
73 | 78 | ||
79 | rc = setup_machine_fdt(__dtb_start); | ||
80 | |||
74 | /* To force early parsing of things like mem=xxx */ | 81 | /* To force early parsing of things like mem=xxx */ |
75 | parse_early_param(); | 82 | parse_early_param(); |
76 | 83 | ||
@@ -81,6 +88,8 @@ void __init setup_arch(char **cmdline_p) | |||
81 | 88 | ||
82 | setup_arch_memory(); | 89 | setup_arch_memory(); |
83 | 90 | ||
91 | unflatten_device_tree(); | ||
92 | |||
84 | /* Can be issue if someone passes cmd line arg "ro" | 93 | /* Can be issue if someone passes cmd line arg "ro" |
85 | * But that is unlikely so keeping it as it is | 94 | * But that is unlikely so keeping it as it is |
86 | */ | 95 | */ |