mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -07:00
Merge branch 'kirkwood_boards_for_v3.5' of git://git.infradead.org/users/jcooper/linux into next/boards
* 'kirkwood_boards_for_v3.5' of git://git.infradead.org/users/jcooper/linux: ARM: kirkwood: Add support for RaidSonic IB-NAS6210/6220 using devicetree kirkwood: Add iconnect support orion/kirkwood: create a generic function for gpio led blinking kirkwood/orion: fix orion_gpio_set_blink ARM: kirkwood: Define DNS-320/DNS-325 NAND in fdt kirkwood: Allow nand to be configured via. devicetree mtd: Add orion_nand devicetree bindings ARM: kirkwood: Basic support for DNS-320 and DNS-325 Includes an update to v3.4-rc7 Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
50
Documentation/devicetree/bindings/mtd/orion-nand.txt
Normal file
50
Documentation/devicetree/bindings/mtd/orion-nand.txt
Normal file
@@ -0,0 +1,50 @@
|
||||
NAND support for Marvell Orion SoC platforms
|
||||
|
||||
Required properties:
|
||||
- compatible : "mrvl,orion-nand".
|
||||
- reg : Base physical address of the NAND and length of memory mapped
|
||||
region
|
||||
|
||||
Optional properties:
|
||||
- cle : Address line number connected to CLE. Default is 0
|
||||
- ale : Address line number connected to ALE. Default is 1
|
||||
- bank-width : Width in bytes of the device. Default is 1
|
||||
- chip-delay : Chip dependent delay for transferring data from array to read
|
||||
registers in usecs
|
||||
|
||||
The device tree may optionally contain sub-nodes describing partitions of the
|
||||
address space. See partition.txt for more detail.
|
||||
|
||||
Example:
|
||||
|
||||
nand@f4000000 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
cle = <0>;
|
||||
ale = <1>;
|
||||
bank-width = <1>;
|
||||
chip-delay = <25>;
|
||||
compatible = "mrvl,orion-nand";
|
||||
reg = <0xf4000000 0x400>;
|
||||
|
||||
partition@0 {
|
||||
label = "u-boot";
|
||||
reg = <0x0000000 0x100000>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
partition@100000 {
|
||||
label = "uImage";
|
||||
reg = <0x0100000 0x200000>;
|
||||
};
|
||||
|
||||
partition@300000 {
|
||||
label = "dtb";
|
||||
reg = <0x0300000 0x100000>;
|
||||
};
|
||||
|
||||
partition@400000 {
|
||||
label = "root";
|
||||
reg = <0x0400000 0x7d00000>;
|
||||
};
|
||||
};
|
||||
@@ -1968,7 +1968,9 @@ S: Maintained
|
||||
F: drivers/net/ethernet/ti/cpmac.c
|
||||
|
||||
CPU FREQUENCY DRIVERS
|
||||
M: Rafael J. Wysocki <rjw@sisk.pl>
|
||||
L: cpufreq@vger.kernel.org
|
||||
L: linux-pm@vger.kernel.org
|
||||
S: Maintained
|
||||
F: drivers/cpufreq/
|
||||
F: include/linux/cpufreq.h
|
||||
@@ -4034,6 +4036,7 @@ F: Documentation/scsi/53c700.txt
|
||||
F: drivers/scsi/53c700*
|
||||
|
||||
LED SUBSYSTEM
|
||||
M: Bryan Wu <bryan.wu@canonical.com>
|
||||
M: Richard Purdie <rpurdie@rpsys.net>
|
||||
S: Maintained
|
||||
F: drivers/leds/
|
||||
|
||||
2
Makefile
2
Makefile
@@ -1,7 +1,7 @@
|
||||
VERSION = 3
|
||||
PATCHLEVEL = 4
|
||||
SUBLEVEL = 0
|
||||
EXTRAVERSION = -rc6
|
||||
EXTRAVERSION = -rc7
|
||||
NAME = Saber-toothed Squirrel
|
||||
|
||||
# *DOCUMENTATION*
|
||||
|
||||
64
arch/arm/boot/dts/kirkwood-dns320.dts
Normal file
64
arch/arm/boot/dts/kirkwood-dns320.dts
Normal file
@@ -0,0 +1,64 @@
|
||||
/dts-v1/;
|
||||
|
||||
/include/ "kirkwood.dtsi"
|
||||
|
||||
/ {
|
||||
model = "D-Link DNS-320 NAS (Rev A1)";
|
||||
compatible = "dlink,dns-320-a1", "dlink,dns-320", "dlink,dns-kirkwood", "mrvl,kirkwood-88f6281", "mrvl,kirkwood";
|
||||
|
||||
memory {
|
||||
device_type = "memory";
|
||||
reg = <0x00000000 0x8000000>;
|
||||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200n8 earlyprintk";
|
||||
};
|
||||
|
||||
ocp@f1000000 {
|
||||
serial@12000 {
|
||||
clock-frequency = <166666667>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
serial@12100 {
|
||||
clock-frequency = <166666667>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
nand@3000000 {
|
||||
status = "okay";
|
||||
|
||||
partition@0 {
|
||||
label = "u-boot";
|
||||
reg = <0x0000000 0x100000>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
partition@100000 {
|
||||
label = "uImage";
|
||||
reg = <0x0100000 0x500000>;
|
||||
};
|
||||
|
||||
partition@600000 {
|
||||
label = "ramdisk";
|
||||
reg = <0x0600000 0x500000>;
|
||||
};
|
||||
|
||||
partition@b00000 {
|
||||
label = "image";
|
||||
reg = <0x0b00000 0x6600000>;
|
||||
};
|
||||
|
||||
partition@7100000 {
|
||||
label = "mini firmware";
|
||||
reg = <0x7100000 0xa00000>;
|
||||
};
|
||||
|
||||
partition@7b00000 {
|
||||
label = "config";
|
||||
reg = <0x7b00000 0x500000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
59
arch/arm/boot/dts/kirkwood-dns325.dts
Normal file
59
arch/arm/boot/dts/kirkwood-dns325.dts
Normal file
@@ -0,0 +1,59 @@
|
||||
/dts-v1/;
|
||||
|
||||
/include/ "kirkwood.dtsi"
|
||||
|
||||
/ {
|
||||
model = "D-Link DNS-325 NAS (Rev A1)";
|
||||
compatible = "dlink,dns-325-a1", "dlink,dns-325", "dlink,dns-kirkwood", "mrvl,kirkwood-88f6281", "mrvl,kirkwood";
|
||||
|
||||
memory {
|
||||
device_type = "memory";
|
||||
reg = <0x00000000 0x10000000>;
|
||||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200n8 earlyprintk";
|
||||
};
|
||||
|
||||
ocp@f1000000 {
|
||||
serial@12000 {
|
||||
clock-frequency = <200000000>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
nand@3000000 {
|
||||
status = "okay";
|
||||
|
||||
partition@0 {
|
||||
label = "u-boot";
|
||||
reg = <0x0000000 0x100000>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
partition@100000 {
|
||||
label = "uImage";
|
||||
reg = <0x0100000 0x500000>;
|
||||
};
|
||||
|
||||
partition@600000 {
|
||||
label = "ramdisk";
|
||||
reg = <0x0600000 0x500000>;
|
||||
};
|
||||
|
||||
partition@b00000 {
|
||||
label = "image";
|
||||
reg = <0x0b00000 0x6600000>;
|
||||
};
|
||||
|
||||
partition@7100000 {
|
||||
label = "mini firmware";
|
||||
reg = <0x7100000 0xa00000>;
|
||||
};
|
||||
|
||||
partition@7b00000 {
|
||||
label = "config";
|
||||
reg = <0x7b00000 0x500000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
44
arch/arm/boot/dts/kirkwood-ib62x0.dts
Normal file
44
arch/arm/boot/dts/kirkwood-ib62x0.dts
Normal file
@@ -0,0 +1,44 @@
|
||||
/dts-v1/;
|
||||
|
||||
/include/ "kirkwood.dtsi"
|
||||
|
||||
/ {
|
||||
model = "RaidSonic ICY BOX IB-NAS62x0 (Rev B)";
|
||||
compatible = "raidsonic,ib-nas6210-b", "raidsonic,ib-nas6220-b", "raidsonic,ib-nas6210", "raidsonic,ib-nas6220", "raidsonic,ib-nas62x0", "mrvl,kirkwood-88f6281", "mrvl,kirkwood";
|
||||
|
||||
memory {
|
||||
device_type = "memory";
|
||||
reg = <0x00000000 0x10000000>;
|
||||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200n8 earlyprintk";
|
||||
};
|
||||
|
||||
ocp@f1000000 {
|
||||
serial@12000 {
|
||||
clock-frequency = <200000000>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
nand@3000000 {
|
||||
status = "okay";
|
||||
|
||||
partition@0 {
|
||||
label = "u-boot";
|
||||
reg = <0x0000000 0x100000>;
|
||||
};
|
||||
|
||||
partition@100000 {
|
||||
label = "uImage";
|
||||
reg = <0x0100000 0x600000>;
|
||||
};
|
||||
|
||||
partition@700000 {
|
||||
label = "root";
|
||||
reg = <0x0700000 0xf900000>;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
26
arch/arm/boot/dts/kirkwood-iconnect.dts
Normal file
26
arch/arm/boot/dts/kirkwood-iconnect.dts
Normal file
@@ -0,0 +1,26 @@
|
||||
/dts-v1/;
|
||||
|
||||
/include/ "kirkwood.dtsi"
|
||||
|
||||
/ {
|
||||
model = "Iomega Iconnect";
|
||||
compatible = "iom,iconnect-1.1", "iom,iconnect", "mrvl,kirkwood-88f6281", "mrvl,kirkwood";
|
||||
|
||||
memory {
|
||||
device_type = "memory";
|
||||
reg = <0x00000000 0x10000000>;
|
||||
};
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200n8 earlyprintk mtdparts=orion_nand:0xc0000@0x0(uboot),0x20000@0xa0000(env),0x300000@0x100000(zImage),0x300000@0x540000(initrd),0x1f400000@0x980000(boot)";
|
||||
linux,initrd-start = <0x4500040>;
|
||||
linux,initrd-end = <0x4800000>;
|
||||
};
|
||||
|
||||
ocp@f1000000 {
|
||||
serial@12000 {
|
||||
clock-frequency = <200000000>;
|
||||
status = "ok";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
ocp@f1000000 {
|
||||
compatible = "simple-bus";
|
||||
ranges = <0 0xf1000000 0x1000000>;
|
||||
ranges = <0 0xf1000000 0x4000000>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
@@ -32,5 +32,18 @@
|
||||
reg = <0x10300 0x20>;
|
||||
interrupts = <53>;
|
||||
};
|
||||
|
||||
nand@3000000 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
cle = <0>;
|
||||
ale = <1>;
|
||||
bank-width = <1>;
|
||||
compatible = "mrvl,orion-nand";
|
||||
reg = <0x3000000 0x400>;
|
||||
chip-delay = <25>;
|
||||
/* set partition map and/or chip-delay in board dts */
|
||||
status = "disabled";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -906,27 +906,14 @@ long arch_ptrace(struct task_struct *child, long request,
|
||||
return ret;
|
||||
}
|
||||
|
||||
#ifdef __ARMEB__
|
||||
#define AUDIT_ARCH_NR AUDIT_ARCH_ARMEB
|
||||
#else
|
||||
#define AUDIT_ARCH_NR AUDIT_ARCH_ARM
|
||||
#endif
|
||||
|
||||
asmlinkage int syscall_trace(int why, struct pt_regs *regs, int scno)
|
||||
{
|
||||
unsigned long ip;
|
||||
|
||||
/*
|
||||
* Save IP. IP is used to denote syscall entry/exit:
|
||||
* IP = 0 -> entry, = 1 -> exit
|
||||
*/
|
||||
ip = regs->ARM_ip;
|
||||
regs->ARM_ip = why;
|
||||
|
||||
if (!ip)
|
||||
if (why)
|
||||
audit_syscall_exit(regs);
|
||||
else
|
||||
audit_syscall_entry(AUDIT_ARCH_NR, scno, regs->ARM_r0,
|
||||
audit_syscall_entry(AUDIT_ARCH_ARM, scno, regs->ARM_r0,
|
||||
regs->ARM_r1, regs->ARM_r2, regs->ARM_r3);
|
||||
|
||||
if (!test_thread_flag(TIF_SYSCALL_TRACE))
|
||||
@@ -936,6 +923,13 @@ asmlinkage int syscall_trace(int why, struct pt_regs *regs, int scno)
|
||||
|
||||
current_thread_info()->syscall = scno;
|
||||
|
||||
/*
|
||||
* IP is used to denote syscall entry/exit:
|
||||
* IP = 0 -> entry, =1 -> exit
|
||||
*/
|
||||
ip = regs->ARM_ip;
|
||||
regs->ARM_ip = why;
|
||||
|
||||
/* the 0x80 provides a way for the tracing parent to distinguish
|
||||
between a syscall stop and SIGTRAP delivery */
|
||||
ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
|
||||
|
||||
@@ -251,8 +251,6 @@ asmlinkage void __cpuinit secondary_start_kernel(void)
|
||||
struct mm_struct *mm = &init_mm;
|
||||
unsigned int cpu = smp_processor_id();
|
||||
|
||||
printk("CPU%u: Booted secondary processor\n", cpu);
|
||||
|
||||
/*
|
||||
* All kernel threads share the same mm context; grab a
|
||||
* reference and switch to it.
|
||||
@@ -264,6 +262,8 @@ asmlinkage void __cpuinit secondary_start_kernel(void)
|
||||
enter_lazy_tlb(mm, current);
|
||||
local_flush_tlb_all();
|
||||
|
||||
printk("CPU%u: Booted secondary processor\n", cpu);
|
||||
|
||||
cpu_init();
|
||||
preempt_disable();
|
||||
trace_hardirqs_off();
|
||||
|
||||
@@ -115,7 +115,7 @@ int kernel_execve(const char *filename,
|
||||
"Ir" (THREAD_START_SP - sizeof(regs)),
|
||||
"r" (®s),
|
||||
"Ir" (sizeof(regs))
|
||||
: "r0", "r1", "r2", "r3", "ip", "lr", "memory");
|
||||
: "r0", "r1", "r2", "r3", "r8", "r9", "ip", "lr", "memory");
|
||||
|
||||
out:
|
||||
return ret;
|
||||
|
||||
@@ -233,6 +233,9 @@ config MACH_ARMLEX4210
|
||||
config MACH_UNIVERSAL_C210
|
||||
bool "Mobile UNIVERSAL_C210 Board"
|
||||
select CPU_EXYNOS4210
|
||||
select S5P_HRT
|
||||
select CLKSRC_MMIO
|
||||
select HAVE_SCHED_CLOCK
|
||||
select S5P_GPIO_INT
|
||||
select S5P_DEV_FIMC0
|
||||
select S5P_DEV_FIMC1
|
||||
|
||||
@@ -678,7 +678,7 @@ static struct clk exynos5_clk_pdma1 = {
|
||||
.name = "dma",
|
||||
.devname = "dma-pl330.1",
|
||||
.enable = exynos5_clk_ip_fsys_ctrl,
|
||||
.ctrlbit = (1 << 1),
|
||||
.ctrlbit = (1 << 2),
|
||||
};
|
||||
|
||||
static struct clk exynos5_clk_mdma1 = {
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
#include <plat/pd.h>
|
||||
#include <plat/regs-fb-v4.h>
|
||||
#include <plat/fimc-core.h>
|
||||
#include <plat/s5p-time.h>
|
||||
#include <plat/camport.h>
|
||||
#include <plat/mipi_csis.h>
|
||||
|
||||
@@ -1091,6 +1092,7 @@ static void __init universal_map_io(void)
|
||||
exynos_init_io(NULL, 0);
|
||||
s3c24xx_init_clocks(24000000);
|
||||
s3c24xx_init_uarts(universal_uartcfgs, ARRAY_SIZE(universal_uartcfgs));
|
||||
s5p_set_timer_source(S5P_PWM2, S5P_PWM4);
|
||||
}
|
||||
|
||||
static void s5p_tv_setup(void)
|
||||
@@ -1146,7 +1148,7 @@ MACHINE_START(UNIVERSAL_C210, "UNIVERSAL_C210")
|
||||
.map_io = universal_map_io,
|
||||
.handle_irq = gic_handle_irq,
|
||||
.init_machine = universal_machine_init,
|
||||
.timer = &exynos4_timer,
|
||||
.timer = &s5p_timer,
|
||||
.reserve = &universal_reserve,
|
||||
.restart = exynos4_restart,
|
||||
MACHINE_END
|
||||
|
||||
@@ -58,6 +58,28 @@ config MACH_DREAMPLUG_DT
|
||||
Say 'Y' here if you want your kernel to support the
|
||||
Marvell DreamPlug (Flattened Device Tree).
|
||||
|
||||
config MACH_ICONNECT_DT
|
||||
bool "Iomega Iconnect (Flattened Device Tree)"
|
||||
select ARCH_KIRKWOOD_DT
|
||||
help
|
||||
Say 'Y' here to enable Iomega Iconnect support.
|
||||
|
||||
config MACH_DLINK_KIRKWOOD_DT
|
||||
bool "D-Link Kirkwood-based NAS (Flattened Device Tree)"
|
||||
select ARCH_KIRKWOOD_DT
|
||||
help
|
||||
Say 'Y' here if you want your kernel to support the
|
||||
Kirkwood-based D-Link NASes such as DNS-320 & DNS-325,
|
||||
using Flattened Device Tree.
|
||||
|
||||
config MACH_IB62X0_DT
|
||||
bool "RaidSonic IB-NAS6210, IB-NAS6220 (Flattened Device Tree)"
|
||||
select ARCH_KIRKWOOD_DT
|
||||
help
|
||||
Say 'Y' here if you want your kernel to support the
|
||||
RaidSonic IB-NAS6210 & IB-NAS6220 devices, using
|
||||
Flattened Device Tree.
|
||||
|
||||
config MACH_TS219
|
||||
bool "QNAP TS-110, TS-119, TS-119P+, TS-210, TS-219, TS-219P and TS-219P+ Turbo NAS"
|
||||
help
|
||||
|
||||
@@ -22,3 +22,6 @@ obj-$(CONFIG_MACH_T5325) += t5325-setup.o
|
||||
obj-$(CONFIG_CPU_IDLE) += cpuidle.o
|
||||
obj-$(CONFIG_ARCH_KIRKWOOD_DT) += board-dt.o
|
||||
obj-$(CONFIG_MACH_DREAMPLUG_DT) += board-dreamplug.o
|
||||
obj-$(CONFIG_MACH_ICONNECT_DT) += board-iconnect.o
|
||||
obj-$(CONFIG_MACH_DLINK_KIRKWOOD_DT) += board-dnskw.o
|
||||
obj-$(CONFIG_MACH_IB62X0_DT) += board-ib62x0.o
|
||||
|
||||
@@ -3,3 +3,7 @@ params_phys-y := 0x00000100
|
||||
initrd_phys-y := 0x00800000
|
||||
|
||||
dtb-$(CONFIG_MACH_DREAMPLUG_DT) += kirkwood-dreamplug.dtb
|
||||
dtb-$(CONFIG_MACH_DLINK_KIRKWOOD_DT) += kirkwood-dns320.dtb
|
||||
dtb-$(CONFIG_MACH_DLINK_KIRKWOOD_DT) += kirkwood-dns325.dtb
|
||||
dtb-$(CONFIG_MACH_ICONNECT_DT) += kirkwood-iconnect.dtb
|
||||
dtb-$(CONFIG_MACH_IB62X0_DT) += kirkwood-ib62x0.dtb
|
||||
|
||||
275
arch/arm/mach-kirkwood/board-dnskw.c
Normal file
275
arch/arm/mach-kirkwood/board-dnskw.c
Normal file
@@ -0,0 +1,275 @@
|
||||
/*
|
||||
* Copyright 2012 (C), Jamie Lentin <jm@lentin.co.uk>
|
||||
*
|
||||
* arch/arm/mach-kirkwood/board-dnskw.c
|
||||
*
|
||||
* D-link DNS-320 & DNS-325 NAS Init for drivers not converted to
|
||||
* flattened device tree yet.
|
||||
*
|
||||
* This file is licensed under the terms of the GNU General Public
|
||||
* License version 2. This program is licensed "as is" without any
|
||||
* warranty of any kind, whether express or implied.
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/ata_platform.h>
|
||||
#include <linux/mv643xx_eth.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/gpio.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/gpio_keys.h>
|
||||
#include <linux/gpio-fan.h>
|
||||
#include <linux/leds.h>
|
||||
#include <asm/mach-types.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include <asm/mach/map.h>
|
||||
#include <mach/kirkwood.h>
|
||||
#include <mach/bridge-regs.h>
|
||||
#include "common.h"
|
||||
#include "mpp.h"
|
||||
|
||||
static struct mv643xx_eth_platform_data dnskw_ge00_data = {
|
||||
.phy_addr = MV643XX_ETH_PHY_ADDR(8),
|
||||
};
|
||||
|
||||
static struct mv_sata_platform_data dnskw_sata_data = {
|
||||
.n_ports = 2,
|
||||
};
|
||||
|
||||
static unsigned int dnskw_mpp_config[] __initdata = {
|
||||
MPP13_UART1_TXD, /* Custom ... */
|
||||
MPP14_UART1_RXD, /* ... Controller (DNS-320 only) */
|
||||
MPP20_SATA1_ACTn, /* LED: White Right HDD */
|
||||
MPP21_SATA0_ACTn, /* LED: White Left HDD */
|
||||
MPP24_GPIO,
|
||||
MPP25_GPIO,
|
||||
MPP26_GPIO, /* LED: Power */
|
||||
MPP27_GPIO, /* LED: Red Right HDD */
|
||||
MPP28_GPIO, /* LED: Red Left HDD */
|
||||
MPP29_GPIO, /* LED: Red USB (DNS-325 only) */
|
||||
MPP30_GPIO,
|
||||
MPP31_GPIO,
|
||||
MPP32_GPIO,
|
||||
MPP33_GPO,
|
||||
MPP34_GPIO, /* Button: Front power */
|
||||
MPP35_GPIO, /* LED: Red USB (DNS-320 only) */
|
||||
MPP36_GPIO, /* Power: Turn off board */
|
||||
MPP37_GPIO, /* Power: Turn back on after power failure */
|
||||
MPP38_GPIO,
|
||||
MPP39_GPIO, /* Power: SATA0 */
|
||||
MPP40_GPIO, /* Power: SATA1 */
|
||||
MPP41_GPIO, /* SATA0 present */
|
||||
MPP42_GPIO, /* SATA1 present */
|
||||
MPP43_GPIO, /* LED: White USB */
|
||||
MPP44_GPIO, /* Fan: Tachometer Pin */
|
||||
MPP45_GPIO, /* Fan: high speed */
|
||||
MPP46_GPIO, /* Fan: low speed */
|
||||
MPP47_GPIO, /* Button: Back unmount */
|
||||
MPP48_GPIO, /* Button: Back reset */
|
||||
MPP49_GPIO, /* Temp Alarm (DNS-325) Pin of U5 (DNS-320) */
|
||||
0
|
||||
};
|
||||
|
||||
static struct gpio_led dns325_led_pins[] = {
|
||||
{
|
||||
.name = "dns325:white:power",
|
||||
.gpio = 26,
|
||||
.active_low = 1,
|
||||
.default_trigger = "default-on",
|
||||
},
|
||||
{
|
||||
.name = "dns325:white:usb",
|
||||
.gpio = 43,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "dns325:red:l_hdd",
|
||||
.gpio = 28,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "dns325:red:r_hdd",
|
||||
.gpio = 27,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "dns325:red:usb",
|
||||
.gpio = 29,
|
||||
.active_low = 1,
|
||||
},
|
||||
};
|
||||
|
||||
static struct gpio_led_platform_data dns325_led_data = {
|
||||
.num_leds = ARRAY_SIZE(dns325_led_pins),
|
||||
.leds = dns325_led_pins,
|
||||
};
|
||||
|
||||
static struct platform_device dns325_led_device = {
|
||||
.name = "leds-gpio",
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.platform_data = &dns325_led_data,
|
||||
},
|
||||
};
|
||||
|
||||
static struct gpio_led dns320_led_pins[] = {
|
||||
{
|
||||
.name = "dns320:blue:power",
|
||||
.gpio = 26,
|
||||
.active_low = 1,
|
||||
.default_trigger = "default-on",
|
||||
},
|
||||
{
|
||||
.name = "dns320:blue:usb",
|
||||
.gpio = 43,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "dns320:orange:l_hdd",
|
||||
.gpio = 28,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "dns320:orange:r_hdd",
|
||||
.gpio = 27,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "dns320:orange:usb",
|
||||
.gpio = 35,
|
||||
.active_low = 1,
|
||||
},
|
||||
};
|
||||
|
||||
static struct gpio_led_platform_data dns320_led_data = {
|
||||
.num_leds = ARRAY_SIZE(dns320_led_pins),
|
||||
.leds = dns320_led_pins,
|
||||
};
|
||||
|
||||
static struct platform_device dns320_led_device = {
|
||||
.name = "leds-gpio",
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.platform_data = &dns320_led_data,
|
||||
},
|
||||
};
|
||||
|
||||
static struct i2c_board_info dns325_i2c_board_info[] __initdata = {
|
||||
{
|
||||
I2C_BOARD_INFO("lm75", 0x48),
|
||||
},
|
||||
/* Something at 0x0c also */
|
||||
};
|
||||
|
||||
static struct gpio_keys_button dnskw_button_pins[] = {
|
||||
{
|
||||
.code = KEY_POWER,
|
||||
.gpio = 34,
|
||||
.desc = "Power button",
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.code = KEY_EJECTCD,
|
||||
.gpio = 47,
|
||||
.desc = "USB unmount button",
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.code = KEY_RESTART,
|
||||
.gpio = 48,
|
||||
.desc = "Reset button",
|
||||
.active_low = 1,
|
||||
},
|
||||
};
|
||||
|
||||
static struct gpio_keys_platform_data dnskw_button_data = {
|
||||
.buttons = dnskw_button_pins,
|
||||
.nbuttons = ARRAY_SIZE(dnskw_button_pins),
|
||||
};
|
||||
|
||||
static struct platform_device dnskw_button_device = {
|
||||
.name = "gpio-keys",
|
||||
.id = -1,
|
||||
.num_resources = 0,
|
||||
.dev = {
|
||||
.platform_data = &dnskw_button_data,
|
||||
}
|
||||
};
|
||||
|
||||
/* Fan: ADDA AD045HB-G73 40mm 6000rpm@5v */
|
||||
static struct gpio_fan_speed dnskw_fan_speed[] = {
|
||||
{ 0, 0 },
|
||||
{ 3000, 1 },
|
||||
{ 6000, 2 },
|
||||
};
|
||||
static unsigned dnskw_fan_pins[] = {46, 45};
|
||||
|
||||
static struct gpio_fan_platform_data dnskw_fan_data = {
|
||||
.num_ctrl = ARRAY_SIZE(dnskw_fan_pins),
|
||||
.ctrl = dnskw_fan_pins,
|
||||
.num_speed = ARRAY_SIZE(dnskw_fan_speed),
|
||||
.speed = dnskw_fan_speed,
|
||||
};
|
||||
|
||||
static struct platform_device dnskw_fan_device = {
|
||||
.name = "gpio-fan",
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.platform_data = &dnskw_fan_data,
|
||||
},
|
||||
};
|
||||
|
||||
static void dnskw_power_off(void)
|
||||
{
|
||||
gpio_set_value(36, 1);
|
||||
}
|
||||
|
||||
/* Register any GPIO for output and set the value */
|
||||
static void __init dnskw_gpio_register(unsigned gpio, char *name, int def)
|
||||
{
|
||||
if (gpio_request(gpio, name) == 0 &&
|
||||
gpio_direction_output(gpio, 0) == 0) {
|
||||
gpio_set_value(gpio, def);
|
||||
if (gpio_export(gpio, 0) != 0)
|
||||
pr_err("dnskw: Failed to export GPIO %s\n", name);
|
||||
} else
|
||||
pr_err("dnskw: Failed to register %s\n", name);
|
||||
}
|
||||
|
||||
void __init dnskw_init(void)
|
||||
{
|
||||
kirkwood_mpp_conf(dnskw_mpp_config);
|
||||
|
||||
kirkwood_ehci_init();
|
||||
kirkwood_ge00_init(&dnskw_ge00_data);
|
||||
kirkwood_sata_init(&dnskw_sata_data);
|
||||
kirkwood_i2c_init();
|
||||
|
||||
platform_device_register(&dnskw_button_device);
|
||||
platform_device_register(&dnskw_fan_device);
|
||||
|
||||
if (of_machine_is_compatible("dlink,dns-325")) {
|
||||
i2c_register_board_info(0, dns325_i2c_board_info,
|
||||
ARRAY_SIZE(dns325_i2c_board_info));
|
||||
platform_device_register(&dns325_led_device);
|
||||
|
||||
} else if (of_machine_is_compatible("dlink,dns-320"))
|
||||
platform_device_register(&dns320_led_device);
|
||||
|
||||
/* Register power-off GPIO. */
|
||||
if (gpio_request(36, "dnskw:power:off") == 0
|
||||
&& gpio_direction_output(36, 0) == 0)
|
||||
pm_power_off = dnskw_power_off;
|
||||
else
|
||||
pr_err("dnskw: failed to configure power-off GPIO\n");
|
||||
|
||||
/* Ensure power is supplied to both HDDs */
|
||||
dnskw_gpio_register(39, "dnskw:power:sata0", 1);
|
||||
dnskw_gpio_register(40, "dnskw:power:sata1", 1);
|
||||
|
||||
/* Set NAS to turn back on after a power failure */
|
||||
dnskw_gpio_register(37, "dnskw:power:recover", 1);
|
||||
}
|
||||
@@ -14,6 +14,7 @@
|
||||
#include <linux/init.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_platform.h>
|
||||
#include <linux/kexec.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include <asm/mach/map.h>
|
||||
#include <mach/bridge-regs.h>
|
||||
@@ -55,11 +56,24 @@ static void __init kirkwood_dt_init(void)
|
||||
if (of_machine_is_compatible("globalscale,dreamplug"))
|
||||
dreamplug_init();
|
||||
|
||||
if (of_machine_is_compatible("dlink,dns-kirkwood"))
|
||||
dnskw_init();
|
||||
|
||||
if (of_machine_is_compatible("iom,iconnect"))
|
||||
iconnect_init();
|
||||
|
||||
if (of_machine_is_compatible("raidsonic,ib-nas62x0"))
|
||||
ib62x0_init();
|
||||
|
||||
of_platform_populate(NULL, kirkwood_dt_match_table, NULL, NULL);
|
||||
}
|
||||
|
||||
static const char *kirkwood_dt_board_compat[] = {
|
||||
"globalscale,dreamplug",
|
||||
"dlink,dns-320",
|
||||
"dlink,dns-325",
|
||||
"iom,iconnect",
|
||||
"raidsonic,ib-nas62x0",
|
||||
NULL
|
||||
};
|
||||
|
||||
|
||||
143
arch/arm/mach-kirkwood/board-ib62x0.c
Normal file
143
arch/arm/mach-kirkwood/board-ib62x0.c
Normal file
@@ -0,0 +1,143 @@
|
||||
/*
|
||||
* Copyright 2012 (C), Simon Baatz <gmbnomis@gmail.com>
|
||||
*
|
||||
* arch/arm/mach-kirkwood/board-ib62x0.c
|
||||
*
|
||||
* RaidSonic ICY BOX IB-NAS6210 & IB-NAS6220 init for drivers not
|
||||
* converted to flattened device tree yet.
|
||||
*
|
||||
* This file is licensed under the terms of the GNU General Public
|
||||
* License version 2. This program is licensed "as is" without any
|
||||
* warranty of any kind, whether express or implied.
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/mtd/partitions.h>
|
||||
#include <linux/ata_platform.h>
|
||||
#include <linux/mv643xx_eth.h>
|
||||
#include <linux/gpio.h>
|
||||
#include <linux/gpio_keys.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/leds.h>
|
||||
#include <asm/mach-types.h>
|
||||
#include <asm/mach/arch.h>
|
||||
#include <mach/kirkwood.h>
|
||||
#include "common.h"
|
||||
#include "mpp.h"
|
||||
|
||||
#define IB62X0_GPIO_POWER_OFF 24
|
||||
|
||||
static struct mv643xx_eth_platform_data ib62x0_ge00_data = {
|
||||
.phy_addr = MV643XX_ETH_PHY_ADDR(8),
|
||||
};
|
||||
|
||||
static struct mv_sata_platform_data ib62x0_sata_data = {
|
||||
.n_ports = 2,
|
||||
};
|
||||
|
||||
static unsigned int ib62x0_mpp_config[] __initdata = {
|
||||
MPP0_NF_IO2,
|
||||
MPP1_NF_IO3,
|
||||
MPP2_NF_IO4,
|
||||
MPP3_NF_IO5,
|
||||
MPP4_NF_IO6,
|
||||
MPP5_NF_IO7,
|
||||
MPP18_NF_IO0,
|
||||
MPP19_NF_IO1,
|
||||
MPP22_GPIO, /* OS LED red */
|
||||
MPP24_GPIO, /* Power off device */
|
||||
MPP25_GPIO, /* OS LED green */
|
||||
MPP27_GPIO, /* USB transfer LED */
|
||||
MPP28_GPIO, /* Reset button */
|
||||
MPP29_GPIO, /* USB Copy button */
|
||||
0
|
||||
};
|
||||
|
||||
static struct gpio_led ib62x0_led_pins[] = {
|
||||
{
|
||||
.name = "ib62x0:green:os",
|
||||
.default_trigger = "default-on",
|
||||
.gpio = 25,
|
||||
.active_low = 0,
|
||||
},
|
||||
{
|
||||
.name = "ib62x0:red:os",
|
||||
.default_trigger = "none",
|
||||
.gpio = 22,
|
||||
.active_low = 0,
|
||||
},
|
||||
{
|
||||
.name = "ib62x0:red:usb_copy",
|
||||
.default_trigger = "none",
|
||||
.gpio = 27,
|
||||
.active_low = 0,
|
||||
},
|
||||
};
|
||||
|
||||
static struct gpio_led_platform_data ib62x0_led_data = {
|
||||
.leds = ib62x0_led_pins,
|
||||
.num_leds = ARRAY_SIZE(ib62x0_led_pins),
|
||||
};
|
||||
|
||||
static struct platform_device ib62x0_led_device = {
|
||||
.name = "leds-gpio",
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.platform_data = &ib62x0_led_data,
|
||||
}
|
||||
};
|
||||
|
||||
static struct gpio_keys_button ib62x0_button_pins[] = {
|
||||
{
|
||||
.code = KEY_COPY,
|
||||
.gpio = 29,
|
||||
.desc = "USB Copy",
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.code = KEY_RESTART,
|
||||
.gpio = 28,
|
||||
.desc = "Reset",
|
||||
.active_low = 1,
|
||||
},
|
||||
};
|
||||
|
||||
static struct gpio_keys_platform_data ib62x0_button_data = {
|
||||
.buttons = ib62x0_button_pins,
|
||||
.nbuttons = ARRAY_SIZE(ib62x0_button_pins),
|
||||
};
|
||||
|
||||
static struct platform_device ib62x0_button_device = {
|
||||
.name = "gpio-keys",
|
||||
.id = -1,
|
||||
.num_resources = 0,
|
||||
.dev = {
|
||||
.platform_data = &ib62x0_button_data,
|
||||
}
|
||||
};
|
||||
|
||||
static void ib62x0_power_off(void)
|
||||
{
|
||||
gpio_set_value(IB62X0_GPIO_POWER_OFF, 1);
|
||||
}
|
||||
|
||||
void __init ib62x0_init(void)
|
||||
{
|
||||
/*
|
||||
* Basic setup. Needs to be called early.
|
||||
*/
|
||||
kirkwood_mpp_conf(ib62x0_mpp_config);
|
||||
|
||||
kirkwood_ehci_init();
|
||||
kirkwood_ge00_init(&ib62x0_ge00_data);
|
||||
kirkwood_sata_init(&ib62x0_sata_data);
|
||||
platform_device_register(&ib62x0_led_device);
|
||||
platform_device_register(&ib62x0_button_device);
|
||||
if (gpio_request(IB62X0_GPIO_POWER_OFF, "ib62x0:power:off") == 0 &&
|
||||
gpio_direction_output(IB62X0_GPIO_POWER_OFF, 0) == 0)
|
||||
pm_power_off = ib62x0_power_off;
|
||||
else
|
||||
pr_err("board-ib62x0: failed to configure power-off GPIO\n");
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user