diff options
author | Giuseppe Coviello <cjg@cruxppc.org> | 2008-05-19 11:20:47 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2008-06-11 08:32:49 -0400 |
commit | b6014e15bc38a33cf9591d33674dd870027cb623 (patch) | |
tree | 6a1fd99c29fb0f81ac88aeaa8c9899cadc93b336 /arch/powerpc/platforms/44x | |
parent | 995ada8d5e6b3d5a32ca3e544a564d0623c4f3fa (diff) |
powerpc/4xx: Sam440ep support
The Sam440ep is an high customizable general purpose mini-itx board,
based on the AMCC 440EP and with a LatticeXP FPGA onboard.
It's poduced by ACube Systems Srl (Bassano del Grappa, Italy),
http://www.acube-systems.biz.
Signed-off-by: Giuseppe Coviello <gicoviello@gmail.com>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Diffstat (limited to 'arch/powerpc/platforms/44x')
-rw-r--r-- | arch/powerpc/platforms/44x/Kconfig | 9 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/Makefile | 1 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/sam440ep.c | 79 |
3 files changed, 89 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig index 6abe91357eee..bee49ca704ef 100644 --- a/arch/powerpc/platforms/44x/Kconfig +++ b/arch/powerpc/platforms/44x/Kconfig | |||
@@ -17,6 +17,15 @@ config EBONY | |||
17 | help | 17 | help |
18 | This option enables support for the IBM PPC440GP evaluation board. | 18 | This option enables support for the IBM PPC440GP evaluation board. |
19 | 19 | ||
20 | config SAM440EP | ||
21 | bool "Sam440ep" | ||
22 | depends on 44x | ||
23 | default n | ||
24 | select 440EP | ||
25 | select PCI | ||
26 | help | ||
27 | This option enables support for the ACube Sam440ep board. | ||
28 | |||
20 | config SEQUOIA | 29 | config SEQUOIA |
21 | bool "Sequoia" | 30 | bool "Sequoia" |
22 | depends on 44x | 31 | depends on 44x |
diff --git a/arch/powerpc/platforms/44x/Makefile b/arch/powerpc/platforms/44x/Makefile index 774165f9acdd..4e71e77f9a23 100644 --- a/arch/powerpc/platforms/44x/Makefile +++ b/arch/powerpc/platforms/44x/Makefile | |||
@@ -3,6 +3,7 @@ obj-$(CONFIG_EBONY) += ebony.o | |||
3 | obj-$(CONFIG_TAISHAN) += taishan.o | 3 | obj-$(CONFIG_TAISHAN) += taishan.o |
4 | obj-$(CONFIG_BAMBOO) += bamboo.o | 4 | obj-$(CONFIG_BAMBOO) += bamboo.o |
5 | obj-$(CONFIG_YOSEMITE) += bamboo.o | 5 | obj-$(CONFIG_YOSEMITE) += bamboo.o |
6 | obj-$(CONFIG_SAM440EP) += sam440ep.o | ||
6 | obj-$(CONFIG_SEQUOIA) += sequoia.o | 7 | obj-$(CONFIG_SEQUOIA) += sequoia.o |
7 | obj-$(CONFIG_KATMAI) += katmai.o | 8 | obj-$(CONFIG_KATMAI) += katmai.o |
8 | obj-$(CONFIG_RAINIER) += rainier.o | 9 | obj-$(CONFIG_RAINIER) += rainier.o |
diff --git a/arch/powerpc/platforms/44x/sam440ep.c b/arch/powerpc/platforms/44x/sam440ep.c new file mode 100644 index 000000000000..47f10e647735 --- /dev/null +++ b/arch/powerpc/platforms/44x/sam440ep.c | |||
@@ -0,0 +1,79 @@ | |||
1 | /* | ||
2 | * Sam440ep board specific routines based off bamboo.c code | ||
3 | * original copyrights below | ||
4 | * | ||
5 | * Wade Farnsworth <wfarnsworth@mvista.com> | ||
6 | * Copyright 2004 MontaVista Software Inc. | ||
7 | * | ||
8 | * Rewritten and ported to the merged powerpc tree: | ||
9 | * Josh Boyer <jwboyer@linux.vnet.ibm.com> | ||
10 | * Copyright 2007 IBM Corporation | ||
11 | * | ||
12 | * Modified from bamboo.c for sam440ep: | ||
13 | * Copyright 2008 Giuseppe Coviello <gicoviello@gmail.com> | ||
14 | * | ||
15 | * This program is free software; you can redistribute it and/or modify it | ||
16 | * under the terms of the GNU General Public License as published by the | ||
17 | * Free Software Foundation; either version 2 of the License, or (at your | ||
18 | * option) any later version. | ||
19 | */ | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/of_platform.h> | ||
22 | |||
23 | #include <asm/machdep.h> | ||
24 | #include <asm/prom.h> | ||
25 | #include <asm/udbg.h> | ||
26 | #include <asm/time.h> | ||
27 | #include <asm/uic.h> | ||
28 | #include <asm/pci-bridge.h> | ||
29 | #include <asm/ppc4xx.h> | ||
30 | #include <linux/i2c.h> | ||
31 | |||
32 | static __initdata struct of_device_id sam440ep_of_bus[] = { | ||
33 | { .compatible = "ibm,plb4", }, | ||
34 | { .compatible = "ibm,opb", }, | ||
35 | { .compatible = "ibm,ebc", }, | ||
36 | {}, | ||
37 | }; | ||
38 | |||
39 | static int __init sam440ep_device_probe(void) | ||
40 | { | ||
41 | of_platform_bus_probe(NULL, sam440ep_of_bus, NULL); | ||
42 | |||
43 | return 0; | ||
44 | } | ||
45 | machine_device_initcall(sam440ep, sam440ep_device_probe); | ||
46 | |||
47 | static int __init sam440ep_probe(void) | ||
48 | { | ||
49 | unsigned long root = of_get_flat_dt_root(); | ||
50 | |||
51 | if (!of_flat_dt_is_compatible(root, "acube,sam440ep")) | ||
52 | return 0; | ||
53 | |||
54 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
55 | |||
56 | return 1; | ||
57 | } | ||
58 | |||
59 | define_machine(sam440ep) { | ||
60 | .name = "Sam440ep", | ||
61 | .probe = sam440ep_probe, | ||
62 | .progress = udbg_progress, | ||
63 | .init_IRQ = uic_init_tree, | ||
64 | .get_irq = uic_get_irq, | ||
65 | .restart = ppc4xx_reset_system, | ||
66 | .calibrate_decr = generic_calibrate_decr, | ||
67 | }; | ||
68 | |||
69 | static struct i2c_board_info sam440ep_rtc_info = { | ||
70 | .type = "m41st85", | ||
71 | .addr = 0x68, | ||
72 | .irq = -1, | ||
73 | }; | ||
74 | |||
75 | static int sam440ep_setup_rtc(void) | ||
76 | { | ||
77 | return i2c_register_board_info(0, &sam440ep_rtc_info, 1); | ||
78 | } | ||
79 | machine_device_initcall(sam440ep, sam440ep_setup_rtc); | ||