diff options
-rw-r--r-- | arch/mips/include/asm/mach-lantiq/falcon/falcon_irq.h | 23 | ||||
-rw-r--r-- | arch/mips/include/asm/mach-lantiq/falcon/irq.h | 18 | ||||
-rw-r--r-- | arch/mips/include/asm/mach-lantiq/falcon/lantiq_soc.h | 67 | ||||
-rw-r--r-- | arch/mips/lantiq/Kconfig | 4 | ||||
-rw-r--r-- | arch/mips/lantiq/Makefile | 1 | ||||
-rw-r--r-- | arch/mips/lantiq/Platform | 1 | ||||
-rw-r--r-- | arch/mips/lantiq/falcon/Makefile | 1 | ||||
-rw-r--r-- | arch/mips/lantiq/falcon/prom.c | 87 | ||||
-rw-r--r-- | arch/mips/lantiq/falcon/reset.c | 90 | ||||
-rw-r--r-- | arch/mips/lantiq/falcon/sysctrl.c | 260 |
10 files changed, 552 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mach-lantiq/falcon/falcon_irq.h b/arch/mips/include/asm/mach-lantiq/falcon/falcon_irq.h new file mode 100644 index 000000000000..318f982f04ff --- /dev/null +++ b/arch/mips/include/asm/mach-lantiq/falcon/falcon_irq.h | |||
@@ -0,0 +1,23 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published | ||
4 | * by the Free Software Foundation. | ||
5 | * | ||
6 | * Copyright (C) 2010 Thomas Langer <thomas.langer@lantiq.com> | ||
7 | */ | ||
8 | |||
9 | #ifndef _FALCON_IRQ__ | ||
10 | #define _FALCON_IRQ__ | ||
11 | |||
12 | #define INT_NUM_IRQ0 8 | ||
13 | #define INT_NUM_IM0_IRL0 (INT_NUM_IRQ0 + 0) | ||
14 | #define INT_NUM_IM1_IRL0 (INT_NUM_IM0_IRL0 + 32) | ||
15 | #define INT_NUM_IM2_IRL0 (INT_NUM_IM1_IRL0 + 32) | ||
16 | #define INT_NUM_IM3_IRL0 (INT_NUM_IM2_IRL0 + 32) | ||
17 | #define INT_NUM_IM4_IRL0 (INT_NUM_IM3_IRL0 + 32) | ||
18 | #define INT_NUM_EXTRA_START (INT_NUM_IM4_IRL0 + 32) | ||
19 | #define INT_NUM_IM_OFFSET (INT_NUM_IM1_IRL0 - INT_NUM_IM0_IRL0) | ||
20 | |||
21 | #define MIPS_CPU_TIMER_IRQ 7 | ||
22 | |||
23 | #endif /* _FALCON_IRQ__ */ | ||
diff --git a/arch/mips/include/asm/mach-lantiq/falcon/irq.h b/arch/mips/include/asm/mach-lantiq/falcon/irq.h new file mode 100644 index 000000000000..2caccd9f9dbc --- /dev/null +++ b/arch/mips/include/asm/mach-lantiq/falcon/irq.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published | ||
4 | * by the Free Software Foundation. | ||
5 | * | ||
6 | * Copyright (C) 2011 Thomas Langer <thomas.langer@lantiq.com> | ||
7 | */ | ||
8 | |||
9 | #ifndef __FALCON_IRQ_H | ||
10 | #define __FALCON_IRQ_H | ||
11 | |||
12 | #include <falcon_irq.h> | ||
13 | |||
14 | #define NR_IRQS 328 | ||
15 | |||
16 | #include_next <irq.h> | ||
17 | |||
18 | #endif | ||
diff --git a/arch/mips/include/asm/mach-lantiq/falcon/lantiq_soc.h b/arch/mips/include/asm/mach-lantiq/falcon/lantiq_soc.h new file mode 100644 index 000000000000..b385252584ee --- /dev/null +++ b/arch/mips/include/asm/mach-lantiq/falcon/lantiq_soc.h | |||
@@ -0,0 +1,67 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published | ||
4 | * by the Free Software Foundation. | ||
5 | * | ||
6 | * Copyright (C) 2010 John Crispin <blogic@openwrt.org> | ||
7 | */ | ||
8 | |||
9 | #ifndef _LTQ_FALCON_H__ | ||
10 | #define _LTQ_FALCON_H__ | ||
11 | |||
12 | #ifdef CONFIG_SOC_FALCON | ||
13 | |||
14 | #include <linux/pinctrl/pinctrl.h> | ||
15 | #include <lantiq.h> | ||
16 | |||
17 | /* Chip IDs */ | ||
18 | #define SOC_ID_FALCON 0x01B8 | ||
19 | |||
20 | /* SoC Types */ | ||
21 | #define SOC_TYPE_FALCON 0x01 | ||
22 | |||
23 | /* | ||
24 | * during early_printk no ioremap possible at this early stage | ||
25 | * lets use KSEG1 instead | ||
26 | */ | ||
27 | #define LTQ_ASC0_BASE_ADDR 0x1E100C00 | ||
28 | #define LTQ_EARLY_ASC KSEG1ADDR(LTQ_ASC0_BASE_ADDR) | ||
29 | |||
30 | /* WDT */ | ||
31 | #define LTQ_RST_CAUSE_WDTRST 0x0002 | ||
32 | |||
33 | /* CHIP ID */ | ||
34 | #define LTQ_STATUS_BASE_ADDR 0x1E802000 | ||
35 | |||
36 | #define FALCON_CHIPID ((u32 *)(KSEG1 + LTQ_STATUS_BASE_ADDR + 0x0c)) | ||
37 | #define FALCON_CHIPTYPE ((u32 *)(KSEG1 + LTQ_STATUS_BASE_ADDR + 0x38)) | ||
38 | #define FALCON_CHIPCONF ((u32 *)(KSEG1 + LTQ_STATUS_BASE_ADDR + 0x40)) | ||
39 | |||
40 | /* SYSCTL - start/stop/restart/configure/... different parts of the Soc */ | ||
41 | #define SYSCTL_SYS1 0 | ||
42 | #define SYSCTL_SYSETH 1 | ||
43 | #define SYSCTL_SYSGPE 2 | ||
44 | |||
45 | /* BOOT_SEL - find what boot media we have */ | ||
46 | #define BS_FLASH 0x1 | ||
47 | #define BS_SPI 0x4 | ||
48 | |||
49 | /* global register ranges */ | ||
50 | extern __iomem void *ltq_ebu_membase; | ||
51 | extern __iomem void *ltq_sys1_membase; | ||
52 | #define ltq_ebu_w32(x, y) ltq_w32((x), ltq_ebu_membase + (y)) | ||
53 | #define ltq_ebu_r32(x) ltq_r32(ltq_ebu_membase + (x)) | ||
54 | |||
55 | #define ltq_sys1_w32(x, y) ltq_w32((x), ltq_sys1_membase + (y)) | ||
56 | #define ltq_sys1_r32(x) ltq_r32(ltq_sys1_membase + (x)) | ||
57 | #define ltq_sys1_w32_mask(clear, set, reg) \ | ||
58 | ltq_sys1_w32((ltq_sys1_r32(reg) & ~(clear)) | (set), reg) | ||
59 | |||
60 | /* | ||
61 | * to keep the irq code generic we need to define this to 0 as falcon | ||
62 | * has no EIU/EBU | ||
63 | */ | ||
64 | #define LTQ_EBU_PCC_ISTAT 0 | ||
65 | |||
66 | #endif /* CONFIG_SOC_FALCON */ | ||
67 | #endif /* _LTQ_XWAY_H__ */ | ||
diff --git a/arch/mips/lantiq/Kconfig b/arch/mips/lantiq/Kconfig index 7389098fd983..20bdf40b3efa 100644 --- a/arch/mips/lantiq/Kconfig +++ b/arch/mips/lantiq/Kconfig | |||
@@ -16,6 +16,10 @@ config SOC_XWAY | |||
16 | bool "XWAY" | 16 | bool "XWAY" |
17 | select SOC_TYPE_XWAY | 17 | select SOC_TYPE_XWAY |
18 | select HW_HAS_PCI | 18 | select HW_HAS_PCI |
19 | |||
20 | config SOC_FALCON | ||
21 | bool "FALCON" | ||
22 | |||
19 | endchoice | 23 | endchoice |
20 | 24 | ||
21 | choice | 25 | choice |
diff --git a/arch/mips/lantiq/Makefile b/arch/mips/lantiq/Makefile index 16f1c758616b..d6bdc579419f 100644 --- a/arch/mips/lantiq/Makefile +++ b/arch/mips/lantiq/Makefile | |||
@@ -11,3 +11,4 @@ obj-y += dts/ | |||
11 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 11 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |
12 | 12 | ||
13 | obj-$(CONFIG_SOC_TYPE_XWAY) += xway/ | 13 | obj-$(CONFIG_SOC_TYPE_XWAY) += xway/ |
14 | obj-$(CONFIG_SOC_FALCON) += falcon/ | ||
diff --git a/arch/mips/lantiq/Platform b/arch/mips/lantiq/Platform index f3dff05722de..b3ec49838fd7 100644 --- a/arch/mips/lantiq/Platform +++ b/arch/mips/lantiq/Platform | |||
@@ -6,3 +6,4 @@ platform-$(CONFIG_LANTIQ) += lantiq/ | |||
6 | cflags-$(CONFIG_LANTIQ) += -I$(srctree)/arch/mips/include/asm/mach-lantiq | 6 | cflags-$(CONFIG_LANTIQ) += -I$(srctree)/arch/mips/include/asm/mach-lantiq |
7 | load-$(CONFIG_LANTIQ) = 0xffffffff80002000 | 7 | load-$(CONFIG_LANTIQ) = 0xffffffff80002000 |
8 | cflags-$(CONFIG_SOC_TYPE_XWAY) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/xway | 8 | cflags-$(CONFIG_SOC_TYPE_XWAY) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/xway |
9 | cflags-$(CONFIG_SOC_FALCON) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/falcon | ||
diff --git a/arch/mips/lantiq/falcon/Makefile b/arch/mips/lantiq/falcon/Makefile new file mode 100644 index 000000000000..ff220f97693d --- /dev/null +++ b/arch/mips/lantiq/falcon/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := prom.o reset.o sysctrl.o | |||
diff --git a/arch/mips/lantiq/falcon/prom.c b/arch/mips/lantiq/falcon/prom.c new file mode 100644 index 000000000000..c1d278f05a3a --- /dev/null +++ b/arch/mips/lantiq/falcon/prom.c | |||
@@ -0,0 +1,87 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published | ||
4 | * by the Free Software Foundation. | ||
5 | * | ||
6 | * Copyright (C) 2012 Thomas Langer <thomas.langer@lantiq.com> | ||
7 | * Copyright (C) 2012 John Crispin <blogic@openwrt.org> | ||
8 | */ | ||
9 | |||
10 | #include <linux/kernel.h> | ||
11 | #include <asm/io.h> | ||
12 | |||
13 | #include <lantiq_soc.h> | ||
14 | |||
15 | #include "../prom.h" | ||
16 | |||
17 | #define SOC_FALCON "Falcon" | ||
18 | #define SOC_FALCON_D "Falcon-D" | ||
19 | #define SOC_FALCON_V "Falcon-V" | ||
20 | #define SOC_FALCON_M "Falcon-M" | ||
21 | |||
22 | #define COMP_FALCON "lantiq,falcon" | ||
23 | |||
24 | #define PART_SHIFT 12 | ||
25 | #define PART_MASK 0x0FFFF000 | ||
26 | #define REV_SHIFT 28 | ||
27 | #define REV_MASK 0xF0000000 | ||
28 | #define SREV_SHIFT 22 | ||
29 | #define SREV_MASK 0x03C00000 | ||
30 | #define TYPE_SHIFT 26 | ||
31 | #define TYPE_MASK 0x3C000000 | ||
32 | |||
33 | /* reset, nmi and ejtag exception vectors */ | ||
34 | #define BOOT_REG_BASE (KSEG1 | 0x1F200000) | ||
35 | #define BOOT_RVEC (BOOT_REG_BASE | 0x00) | ||
36 | #define BOOT_NVEC (BOOT_REG_BASE | 0x04) | ||
37 | #define BOOT_EVEC (BOOT_REG_BASE | 0x08) | ||
38 | |||
39 | void __init ltq_soc_nmi_setup(void) | ||
40 | { | ||
41 | extern void (*nmi_handler)(void); | ||
42 | |||
43 | ltq_w32((unsigned long)&nmi_handler, (void *)BOOT_NVEC); | ||
44 | } | ||
45 | |||
46 | void __init ltq_soc_ejtag_setup(void) | ||
47 | { | ||
48 | extern void (*ejtag_debug_handler)(void); | ||
49 | |||
50 | ltq_w32((unsigned long)&ejtag_debug_handler, (void *)BOOT_EVEC); | ||
51 | } | ||
52 | |||
53 | void __init ltq_soc_detect(struct ltq_soc_info *i) | ||
54 | { | ||
55 | u32 type; | ||
56 | i->partnum = (ltq_r32(FALCON_CHIPID) & PART_MASK) >> PART_SHIFT; | ||
57 | i->rev = (ltq_r32(FALCON_CHIPID) & REV_MASK) >> REV_SHIFT; | ||
58 | i->srev = ((ltq_r32(FALCON_CHIPCONF) & SREV_MASK) >> SREV_SHIFT); | ||
59 | i->compatible = COMP_FALCON; | ||
60 | i->type = SOC_TYPE_FALCON; | ||
61 | sprintf(i->rev_type, "%c%d%d", (i->srev & 0x4) ? ('B') : ('A'), | ||
62 | i->rev & 0x7, (i->srev & 0x3) + 1); | ||
63 | |||
64 | switch (i->partnum) { | ||
65 | case SOC_ID_FALCON: | ||
66 | type = (ltq_r32(FALCON_CHIPTYPE) & TYPE_MASK) >> TYPE_SHIFT; | ||
67 | switch (type) { | ||
68 | case 0: | ||
69 | i->name = SOC_FALCON_D; | ||
70 | break; | ||
71 | case 1: | ||
72 | i->name = SOC_FALCON_V; | ||
73 | break; | ||
74 | case 2: | ||
75 | i->name = SOC_FALCON_M; | ||
76 | break; | ||
77 | default: | ||
78 | i->name = SOC_FALCON; | ||
79 | break; | ||
80 | } | ||
81 | break; | ||
82 | |||
83 | default: | ||
84 | unreachable(); | ||
85 | break; | ||
86 | } | ||
87 | } | ||
diff --git a/arch/mips/lantiq/falcon/reset.c b/arch/mips/lantiq/falcon/reset.c new file mode 100644 index 000000000000..568248253426 --- /dev/null +++ b/arch/mips/lantiq/falcon/reset.c | |||
@@ -0,0 +1,90 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published | ||
4 | * by the Free Software Foundation. | ||
5 | * | ||
6 | * Copyright (C) 2012 Thomas Langer <thomas.langer@lantiq.com> | ||
7 | * Copyright (C) 2012 John Crispin <blogic@openwrt.org> | ||
8 | */ | ||
9 | |||
10 | #include <linux/init.h> | ||
11 | #include <linux/io.h> | ||
12 | #include <linux/pm.h> | ||
13 | #include <asm/reboot.h> | ||
14 | #include <linux/export.h> | ||
15 | |||
16 | #include <lantiq_soc.h> | ||
17 | |||
18 | /* CPU0 Reset Source Register */ | ||
19 | #define SYS1_CPU0RS 0x0040 | ||
20 | /* reset cause mask */ | ||
21 | #define CPU0RS_MASK 0x0003 | ||
22 | /* CPU0 Boot Mode Register */ | ||
23 | #define SYS1_BM 0x00a0 | ||
24 | /* boot mode mask */ | ||
25 | #define BM_MASK 0x0005 | ||
26 | |||
27 | /* allow platform code to find out what surce we booted from */ | ||
28 | unsigned char ltq_boot_select(void) | ||
29 | { | ||
30 | return ltq_sys1_r32(SYS1_BM) & BM_MASK; | ||
31 | } | ||
32 | |||
33 | /* allow the watchdog driver to find out what the boot reason was */ | ||
34 | int ltq_reset_cause(void) | ||
35 | { | ||
36 | return ltq_sys1_r32(SYS1_CPU0RS) & CPU0RS_MASK; | ||
37 | } | ||
38 | EXPORT_SYMBOL_GPL(ltq_reset_cause); | ||
39 | |||
40 | #define BOOT_REG_BASE (KSEG1 | 0x1F200000) | ||
41 | #define BOOT_PW1_REG (BOOT_REG_BASE | 0x20) | ||
42 | #define BOOT_PW2_REG (BOOT_REG_BASE | 0x24) | ||
43 | #define BOOT_PW1 0x4C545100 | ||
44 | #define BOOT_PW2 0x0051544C | ||
45 | |||
46 | #define WDT_REG_BASE (KSEG1 | 0x1F8803F0) | ||
47 | #define WDT_PW1 0x00BE0000 | ||
48 | #define WDT_PW2 0x00DC0000 | ||
49 | |||
50 | static void machine_restart(char *command) | ||
51 | { | ||
52 | local_irq_disable(); | ||
53 | |||
54 | /* reboot magic */ | ||
55 | ltq_w32(BOOT_PW1, (void *)BOOT_PW1_REG); /* 'LTQ\0' */ | ||
56 | ltq_w32(BOOT_PW2, (void *)BOOT_PW2_REG); /* '\0QTL' */ | ||
57 | ltq_w32(0, (void *)BOOT_REG_BASE); /* reset Bootreg RVEC */ | ||
58 | |||
59 | /* watchdog magic */ | ||
60 | ltq_w32(WDT_PW1, (void *)WDT_REG_BASE); | ||
61 | ltq_w32(WDT_PW2 | | ||
62 | (0x3 << 26) | /* PWL */ | ||
63 | (0x2 << 24) | /* CLKDIV */ | ||
64 | (0x1 << 31) | /* enable */ | ||
65 | (1), /* reload */ | ||
66 | (void *)WDT_REG_BASE); | ||
67 | unreachable(); | ||
68 | } | ||
69 | |||
70 | static void machine_halt(void) | ||
71 | { | ||
72 | local_irq_disable(); | ||
73 | unreachable(); | ||
74 | } | ||
75 | |||
76 | static void machine_power_off(void) | ||
77 | { | ||
78 | local_irq_disable(); | ||
79 | unreachable(); | ||
80 | } | ||
81 | |||
82 | static int __init mips_reboot_setup(void) | ||
83 | { | ||
84 | _machine_restart = machine_restart; | ||
85 | _machine_halt = machine_halt; | ||
86 | pm_power_off = machine_power_off; | ||
87 | return 0; | ||
88 | } | ||
89 | |||
90 | arch_initcall(mips_reboot_setup); | ||
diff --git a/arch/mips/lantiq/falcon/sysctrl.c b/arch/mips/lantiq/falcon/sysctrl.c new file mode 100644 index 000000000000..ba0123d13d40 --- /dev/null +++ b/arch/mips/lantiq/falcon/sysctrl.c | |||
@@ -0,0 +1,260 @@ | |||
1 | /* | ||
2 | * This program is free software; you can redistribute it and/or modify it | ||
3 | * under the terms of the GNU General Public License version 2 as published | ||
4 | * by the Free Software Foundation. | ||
5 | * | ||
6 | * Copyright (C) 2011 Thomas Langer <thomas.langer@lantiq.com> | ||
7 | * Copyright (C) 2011 John Crispin <blogic@openwrt.org> | ||
8 | */ | ||
9 | |||
10 | #include <linux/ioport.h> | ||
11 | #include <linux/export.h> | ||
12 | #include <linux/clkdev.h> | ||
13 | #include <linux/of_address.h> | ||
14 | #include <asm/delay.h> | ||
15 | |||
16 | #include <lantiq_soc.h> | ||
17 | |||
18 | #include "../clk.h" | ||
19 | |||
20 | /* infrastructure control register */ | ||
21 | #define SYS1_INFRAC 0x00bc | ||
22 | /* Configuration fuses for drivers and pll */ | ||
23 | #define STATUS_CONFIG 0x0040 | ||
24 | |||
25 | /* GPE frequency selection */ | ||
26 | #define GPPC_OFFSET 24 | ||
27 | #define GPEFREQ_MASK 0x00000C0 | ||
28 | #define GPEFREQ_OFFSET 10 | ||
29 | /* Clock status register */ | ||
30 | #define SYSCTL_CLKS 0x0000 | ||
31 | /* Clock enable register */ | ||
32 | #define SYSCTL_CLKEN 0x0004 | ||
33 | /* Clock clear register */ | ||
34 | #define SYSCTL_CLKCLR 0x0008 | ||
35 | /* Activation Status Register */ | ||
36 | #define SYSCTL_ACTS 0x0020 | ||
37 | /* Activation Register */ | ||
38 | #define SYSCTL_ACT 0x0024 | ||
39 | /* Deactivation Register */ | ||
40 | #define SYSCTL_DEACT 0x0028 | ||
41 | /* reboot Register */ | ||
42 | #define SYSCTL_RBT 0x002c | ||
43 | /* CPU0 Clock Control Register */ | ||
44 | #define SYS1_CPU0CC 0x0040 | ||
45 | /* HRST_OUT_N Control Register */ | ||
46 | #define SYS1_HRSTOUTC 0x00c0 | ||
47 | /* clock divider bit */ | ||
48 | #define CPU0CC_CPUDIV 0x0001 | ||
49 | |||
50 | /* Activation Status Register */ | ||
51 | #define ACTS_ASC1_ACT 0x00000800 | ||
52 | #define ACTS_I2C_ACT 0x00004000 | ||
53 | #define ACTS_P0 0x00010000 | ||
54 | #define ACTS_P1 0x00010000 | ||
55 | #define ACTS_P2 0x00020000 | ||
56 | #define ACTS_P3 0x00020000 | ||
57 | #define ACTS_P4 0x00040000 | ||
58 | #define ACTS_PADCTRL0 0x00100000 | ||
59 | #define ACTS_PADCTRL1 0x00100000 | ||
60 | #define ACTS_PADCTRL2 0x00200000 | ||
61 | #define ACTS_PADCTRL3 0x00200000 | ||
62 | #define ACTS_PADCTRL4 0x00400000 | ||
63 | |||
64 | #define sysctl_w32(m, x, y) ltq_w32((x), sysctl_membase[m] + (y)) | ||
65 | #define sysctl_r32(m, x) ltq_r32(sysctl_membase[m] + (x)) | ||
66 | #define sysctl_w32_mask(m, clear, set, reg) \ | ||
67 | sysctl_w32(m, (sysctl_r32(m, reg) & ~(clear)) | (set), reg) | ||
68 | |||
69 | #define status_w32(x, y) ltq_w32((x), status_membase + (y)) | ||
70 | #define status_r32(x) ltq_r32(status_membase + (x)) | ||
71 | |||
72 | static void __iomem *sysctl_membase[3], *status_membase; | ||
73 | void __iomem *ltq_sys1_membase, *ltq_ebu_membase; | ||
74 | |||
75 | void falcon_trigger_hrst(int level) | ||
76 | { | ||
77 | sysctl_w32(SYSCTL_SYS1, level & 1, SYS1_HRSTOUTC); | ||
78 | } | ||
79 | |||
80 | static inline void sysctl_wait(struct clk *clk, | ||
81 | unsigned int test, unsigned int reg) | ||
82 | { | ||
83 | int err = 1000000; | ||
84 | |||
85 | do {} while (--err && ((sysctl_r32(clk->module, reg) | ||
86 | & clk->bits) != test)); | ||
87 | if (!err) | ||
88 | pr_err("module de/activation failed %d %08X %08X %08X\n", | ||
89 | clk->module, clk->bits, test, | ||
90 | sysctl_r32(clk->module, reg) & clk->bits); | ||
91 | } | ||
92 | |||
93 | static int sysctl_activate(struct clk *clk) | ||
94 | { | ||
95 | sysctl_w32(clk->module, clk->bits, SYSCTL_CLKEN); | ||
96 | sysctl_w32(clk->module, clk->bits, SYSCTL_ACT); | ||
97 | sysctl_wait(clk, clk->bits, SYSCTL_ACTS); | ||
98 | return 0; | ||
99 | } | ||
100 | |||
101 | static void sysctl_deactivate(struct clk *clk) | ||
102 | { | ||
103 | sysctl_w32(clk->module, clk->bits, SYSCTL_CLKCLR); | ||
104 | sysctl_w32(clk->module, clk->bits, SYSCTL_DEACT); | ||
105 | sysctl_wait(clk, 0, SYSCTL_ACTS); | ||
106 | } | ||
107 | |||
108 | static int sysctl_clken(struct clk *clk) | ||
109 | { | ||
110 | sysctl_w32(clk->module, clk->bits, SYSCTL_CLKEN); | ||
111 | sysctl_wait(clk, clk->bits, SYSCTL_CLKS); | ||
112 | return 0; | ||
113 | } | ||
114 | |||
115 | static void sysctl_clkdis(struct clk *clk) | ||
116 | { | ||
117 | sysctl_w32(clk->module, clk->bits, SYSCTL_CLKCLR); | ||
118 | sysctl_wait(clk, 0, SYSCTL_CLKS); | ||
119 | } | ||
120 | |||
121 | static void sysctl_reboot(struct clk *clk) | ||
122 | { | ||
123 | unsigned int act; | ||
124 | unsigned int bits; | ||
125 | |||
126 | act = sysctl_r32(clk->module, SYSCTL_ACT); | ||
127 | bits = ~act & clk->bits; | ||
128 | if (bits != 0) { | ||
129 | sysctl_w32(clk->module, bits, SYSCTL_CLKEN); | ||
130 | sysctl_w32(clk->module, bits, SYSCTL_ACT); | ||
131 | sysctl_wait(clk, bits, SYSCTL_ACTS); | ||
132 | } | ||
133 | sysctl_w32(clk->module, act & clk->bits, SYSCTL_RBT); | ||
134 | sysctl_wait(clk, clk->bits, SYSCTL_ACTS); | ||
135 | } | ||
136 | |||
137 | /* enable the ONU core */ | ||
138 | static void falcon_gpe_enable(void) | ||
139 | { | ||
140 | unsigned int freq; | ||
141 | unsigned int status; | ||
142 | |||
143 | /* if if the clock is already enabled */ | ||
144 | status = sysctl_r32(SYSCTL_SYS1, SYS1_INFRAC); | ||
145 | if (status & (1 << (GPPC_OFFSET + 1))) | ||
146 | return; | ||
147 | |||
148 | if (status_r32(STATUS_CONFIG) == 0) | ||
149 | freq = 1; /* use 625MHz on unfused chip */ | ||
150 | else | ||
151 | freq = (status_r32(STATUS_CONFIG) & | ||
152 | GPEFREQ_MASK) >> | ||
153 | GPEFREQ_OFFSET; | ||
154 | |||
155 | /* apply new frequency */ | ||
156 | sysctl_w32_mask(SYSCTL_SYS1, 7 << (GPPC_OFFSET + 1), | ||
157 | freq << (GPPC_OFFSET + 2) , SYS1_INFRAC); | ||
158 | udelay(1); | ||
159 | |||
160 | /* enable new frequency */ | ||
161 | sysctl_w32_mask(SYSCTL_SYS1, 0, 1 << (GPPC_OFFSET + 1), SYS1_INFRAC); | ||
162 | udelay(1); | ||
163 | } | ||
164 | |||
165 | static inline void clkdev_add_sys(const char *dev, unsigned int module, | ||
166 | unsigned int bits) | ||
167 | { | ||
168 | struct clk *clk = kzalloc(sizeof(struct clk), GFP_KERNEL); | ||
169 | |||
170 | clk->cl.dev_id = dev; | ||
171 | clk->cl.con_id = NULL; | ||
172 | clk->cl.clk = clk; | ||
173 | clk->module = module; | ||
174 | clk->activate = sysctl_activate; | ||
175 | clk->deactivate = sysctl_deactivate; | ||
176 | clk->enable = sysctl_clken; | ||
177 | clk->disable = sysctl_clkdis; | ||
178 | clk->reboot = sysctl_reboot; | ||
179 | clkdev_add(&clk->cl); | ||
180 | } | ||
181 | |||
182 | void __init ltq_soc_init(void) | ||
183 | { | ||
184 | struct device_node *np_status = | ||
185 | of_find_compatible_node(NULL, NULL, "lantiq,status-falcon"); | ||
186 | struct device_node *np_ebu = | ||
187 | of_find_compatible_node(NULL, NULL, "lantiq,ebu-falcon"); | ||
188 | struct device_node *np_sys1 = | ||
189 | of_find_compatible_node(NULL, NULL, "lantiq,sys1-falcon"); | ||
190 | struct device_node *np_syseth = | ||
191 | of_find_compatible_node(NULL, NULL, "lantiq,syseth-falcon"); | ||
192 | struct device_node *np_sysgpe = | ||
193 | of_find_compatible_node(NULL, NULL, "lantiq,sysgpe-falcon"); | ||
194 | struct resource res_status, res_ebu, res_sys[3]; | ||
195 | int i; | ||
196 | |||
197 | /* check if all the core register ranges are available */ | ||
198 | if (!np_status || !np_ebu || !np_sys1 || !np_syseth || !np_sysgpe) | ||
199 | panic("Failed to load core nodes from devicetree"); | ||
200 | |||
201 | if (of_address_to_resource(np_status, 0, &res_status) || | ||
202 | of_address_to_resource(np_ebu, 0, &res_ebu) || | ||
203 | of_address_to_resource(np_sys1, 0, &res_sys[0]) || | ||
204 | of_address_to_resource(np_syseth, 0, &res_sys[1]) || | ||
205 | of_address_to_resource(np_sysgpe, 0, &res_sys[2])) | ||
206 | panic("Failed to get core resources"); | ||
207 | |||
208 | if ((request_mem_region(res_status.start, resource_size(&res_status), | ||
209 | res_status.name) < 0) || | ||
210 | (request_mem_region(res_ebu.start, resource_size(&res_ebu), | ||
211 | res_ebu.name) < 0) || | ||
212 | (request_mem_region(res_sys[0].start, | ||
213 | resource_size(&res_sys[0]), | ||
214 | res_sys[0].name) < 0) || | ||
215 | (request_mem_region(res_sys[1].start, | ||
216 | resource_size(&res_sys[1]), | ||
217 | res_sys[1].name) < 0) || | ||
218 | (request_mem_region(res_sys[2].start, | ||
219 | resource_size(&res_sys[2]), | ||
220 | res_sys[2].name) < 0)) | ||
221 | pr_err("Failed to request core reources"); | ||
222 | |||
223 | status_membase = ioremap_nocache(res_status.start, | ||
224 | resource_size(&res_status)); | ||
225 | ltq_ebu_membase = ioremap_nocache(res_ebu.start, | ||
226 | resource_size(&res_ebu)); | ||
227 | |||
228 | if (!status_membase || !ltq_ebu_membase) | ||
229 | panic("Failed to remap core resources"); | ||
230 | |||
231 | for (i = 0; i < 3; i++) { | ||
232 | sysctl_membase[i] = ioremap_nocache(res_sys[i].start, | ||
233 | resource_size(&res_sys[i])); | ||
234 | if (!sysctl_membase[i]) | ||
235 | panic("Failed to remap sysctrl resources"); | ||
236 | } | ||
237 | ltq_sys1_membase = sysctl_membase[0]; | ||
238 | |||
239 | falcon_gpe_enable(); | ||
240 | |||
241 | /* get our 3 static rates for cpu, fpi and io clocks */ | ||
242 | if (ltq_sys1_r32(SYS1_CPU0CC) & CPU0CC_CPUDIV) | ||
243 | clkdev_add_static(CLOCK_200M, CLOCK_100M, CLOCK_200M); | ||
244 | else | ||
245 | clkdev_add_static(CLOCK_400M, CLOCK_100M, CLOCK_200M); | ||
246 | |||
247 | /* add our clock domains */ | ||
248 | clkdev_add_sys("1d810000.gpio", SYSCTL_SYSETH, ACTS_P0); | ||
249 | clkdev_add_sys("1d810100.gpio", SYSCTL_SYSETH, ACTS_P2); | ||
250 | clkdev_add_sys("1e800100.gpio", SYSCTL_SYS1, ACTS_P1); | ||
251 | clkdev_add_sys("1e800200.gpio", SYSCTL_SYS1, ACTS_P3); | ||
252 | clkdev_add_sys("1e800300.gpio", SYSCTL_SYS1, ACTS_P4); | ||
253 | clkdev_add_sys("1db01000.pad", SYSCTL_SYSETH, ACTS_PADCTRL0); | ||
254 | clkdev_add_sys("1db02000.pad", SYSCTL_SYSETH, ACTS_PADCTRL2); | ||
255 | clkdev_add_sys("1e800400.pad", SYSCTL_SYS1, ACTS_PADCTRL1); | ||
256 | clkdev_add_sys("1e800500.pad", SYSCTL_SYS1, ACTS_PADCTRL3); | ||
257 | clkdev_add_sys("1e800600.pad", SYSCTL_SYS1, ACTS_PADCTRL4); | ||
258 | clkdev_add_sys("1e100C00.serial", SYSCTL_SYS1, ACTS_ASC1_ACT); | ||
259 | clkdev_add_sys("1e200000.i2c", SYSCTL_SYS1, ACTS_I2C_ACT); | ||
260 | } | ||