diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-07-02 03:42:17 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-07-02 03:42:17 -0400 |
commit | dd8164c1dd7f511aa362f548fd8c4882bee3fd54 (patch) | |
tree | c89aa82919c776376875b631510091b029eb1458 /arch/powerpc/sysdev | |
parent | c039e3a8ddd52139d0f81711ecd757772f868b22 (diff) | |
parent | a63b3bc7db32b63bfe5f48fa8582f931db81c86e (diff) |
Merge remote-tracking branch 'scott/next' into next
Merge Freescale updates
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/Makefile | 2 | ||||
-rw-r--r-- | arch/powerpc/sysdev/fsl_mpic_timer_wakeup.c | 161 | ||||
-rw-r--r-- | arch/powerpc/sysdev/mpic.c | 58 | ||||
-rw-r--r-- | arch/powerpc/sysdev/mpic_timer.c | 593 |
4 files changed, 807 insertions, 7 deletions
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index 99464a7bdb3b..f67ac900d870 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile | |||
@@ -4,6 +4,8 @@ ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) | |||
4 | 4 | ||
5 | mpic-msi-obj-$(CONFIG_PCI_MSI) += mpic_msi.o mpic_u3msi.o mpic_pasemi_msi.o | 5 | mpic-msi-obj-$(CONFIG_PCI_MSI) += mpic_msi.o mpic_u3msi.o mpic_pasemi_msi.o |
6 | obj-$(CONFIG_MPIC) += mpic.o $(mpic-msi-obj-y) | 6 | obj-$(CONFIG_MPIC) += mpic.o $(mpic-msi-obj-y) |
7 | obj-$(CONFIG_MPIC_TIMER) += mpic_timer.o | ||
8 | obj-$(CONFIG_FSL_MPIC_TIMER_WAKEUP) += fsl_mpic_timer_wakeup.o | ||
7 | mpic-msgr-obj-$(CONFIG_MPIC_MSGR) += mpic_msgr.o | 9 | mpic-msgr-obj-$(CONFIG_MPIC_MSGR) += mpic_msgr.o |
8 | obj-$(CONFIG_MPIC) += mpic.o $(mpic-msi-obj-y) $(mpic-msgr-obj-y) | 10 | obj-$(CONFIG_MPIC) += mpic.o $(mpic-msi-obj-y) $(mpic-msgr-obj-y) |
9 | obj-$(CONFIG_PPC_EPAPR_HV_PIC) += ehv_pic.o | 11 | obj-$(CONFIG_PPC_EPAPR_HV_PIC) += ehv_pic.o |
diff --git a/arch/powerpc/sysdev/fsl_mpic_timer_wakeup.c b/arch/powerpc/sysdev/fsl_mpic_timer_wakeup.c new file mode 100644 index 000000000000..1707bf04dec6 --- /dev/null +++ b/arch/powerpc/sysdev/fsl_mpic_timer_wakeup.c | |||
@@ -0,0 +1,161 @@ | |||
1 | /* | ||
2 | * MPIC timer wakeup driver | ||
3 | * | ||
4 | * Copyright 2013 Freescale Semiconductor, Inc. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | */ | ||
11 | |||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/slab.h> | ||
14 | #include <linux/errno.h> | ||
15 | #include <linux/module.h> | ||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/device.h> | ||
18 | |||
19 | #include <asm/mpic_timer.h> | ||
20 | #include <asm/mpic.h> | ||
21 | |||
22 | struct fsl_mpic_timer_wakeup { | ||
23 | struct mpic_timer *timer; | ||
24 | struct work_struct free_work; | ||
25 | }; | ||
26 | |||
27 | static struct fsl_mpic_timer_wakeup *fsl_wakeup; | ||
28 | static DEFINE_MUTEX(sysfs_lock); | ||
29 | |||
30 | static void fsl_free_resource(struct work_struct *ws) | ||
31 | { | ||
32 | struct fsl_mpic_timer_wakeup *wakeup = | ||
33 | container_of(ws, struct fsl_mpic_timer_wakeup, free_work); | ||
34 | |||
35 | mutex_lock(&sysfs_lock); | ||
36 | |||
37 | if (wakeup->timer) { | ||
38 | disable_irq_wake(wakeup->timer->irq); | ||
39 | mpic_free_timer(wakeup->timer); | ||
40 | } | ||
41 | |||
42 | wakeup->timer = NULL; | ||
43 | mutex_unlock(&sysfs_lock); | ||
44 | } | ||
45 | |||
46 | static irqreturn_t fsl_mpic_timer_irq(int irq, void *dev_id) | ||
47 | { | ||
48 | struct fsl_mpic_timer_wakeup *wakeup = dev_id; | ||
49 | |||
50 | schedule_work(&wakeup->free_work); | ||
51 | |||
52 | return wakeup->timer ? IRQ_HANDLED : IRQ_NONE; | ||
53 | } | ||
54 | |||
55 | static ssize_t fsl_timer_wakeup_show(struct device *dev, | ||
56 | struct device_attribute *attr, | ||
57 | char *buf) | ||
58 | { | ||
59 | struct timeval interval; | ||
60 | int val = 0; | ||
61 | |||
62 | mutex_lock(&sysfs_lock); | ||
63 | if (fsl_wakeup->timer) { | ||
64 | mpic_get_remain_time(fsl_wakeup->timer, &interval); | ||
65 | val = interval.tv_sec + 1; | ||
66 | } | ||
67 | mutex_unlock(&sysfs_lock); | ||
68 | |||
69 | return sprintf(buf, "%d\n", val); | ||
70 | } | ||
71 | |||
72 | static ssize_t fsl_timer_wakeup_store(struct device *dev, | ||
73 | struct device_attribute *attr, | ||
74 | const char *buf, | ||
75 | size_t count) | ||
76 | { | ||
77 | struct timeval interval; | ||
78 | int ret; | ||
79 | |||
80 | interval.tv_usec = 0; | ||
81 | if (kstrtol(buf, 0, &interval.tv_sec)) | ||
82 | return -EINVAL; | ||
83 | |||
84 | mutex_lock(&sysfs_lock); | ||
85 | |||
86 | if (fsl_wakeup->timer) { | ||
87 | disable_irq_wake(fsl_wakeup->timer->irq); | ||
88 | mpic_free_timer(fsl_wakeup->timer); | ||
89 | fsl_wakeup->timer = NULL; | ||
90 | } | ||
91 | |||
92 | if (!interval.tv_sec) { | ||
93 | mutex_unlock(&sysfs_lock); | ||
94 | return count; | ||
95 | } | ||
96 | |||
97 | fsl_wakeup->timer = mpic_request_timer(fsl_mpic_timer_irq, | ||
98 | fsl_wakeup, &interval); | ||
99 | if (!fsl_wakeup->timer) { | ||
100 | mutex_unlock(&sysfs_lock); | ||
101 | return -EINVAL; | ||
102 | } | ||
103 | |||
104 | ret = enable_irq_wake(fsl_wakeup->timer->irq); | ||
105 | if (ret) { | ||
106 | mpic_free_timer(fsl_wakeup->timer); | ||
107 | fsl_wakeup->timer = NULL; | ||
108 | mutex_unlock(&sysfs_lock); | ||
109 | |||
110 | return ret; | ||
111 | } | ||
112 | |||
113 | mpic_start_timer(fsl_wakeup->timer); | ||
114 | |||
115 | mutex_unlock(&sysfs_lock); | ||
116 | |||
117 | return count; | ||
118 | } | ||
119 | |||
120 | static struct device_attribute mpic_attributes = __ATTR(timer_wakeup, 0644, | ||
121 | fsl_timer_wakeup_show, fsl_timer_wakeup_store); | ||
122 | |||
123 | static int __init fsl_wakeup_sys_init(void) | ||
124 | { | ||
125 | int ret; | ||
126 | |||
127 | fsl_wakeup = kzalloc(sizeof(struct fsl_mpic_timer_wakeup), GFP_KERNEL); | ||
128 | if (!fsl_wakeup) | ||
129 | return -ENOMEM; | ||
130 | |||
131 | INIT_WORK(&fsl_wakeup->free_work, fsl_free_resource); | ||
132 | |||
133 | ret = device_create_file(mpic_subsys.dev_root, &mpic_attributes); | ||
134 | if (ret) | ||
135 | kfree(fsl_wakeup); | ||
136 | |||
137 | return ret; | ||
138 | } | ||
139 | |||
140 | static void __exit fsl_wakeup_sys_exit(void) | ||
141 | { | ||
142 | device_remove_file(mpic_subsys.dev_root, &mpic_attributes); | ||
143 | |||
144 | mutex_lock(&sysfs_lock); | ||
145 | |||
146 | if (fsl_wakeup->timer) { | ||
147 | disable_irq_wake(fsl_wakeup->timer->irq); | ||
148 | mpic_free_timer(fsl_wakeup->timer); | ||
149 | } | ||
150 | |||
151 | kfree(fsl_wakeup); | ||
152 | |||
153 | mutex_unlock(&sysfs_lock); | ||
154 | } | ||
155 | |||
156 | module_init(fsl_wakeup_sys_init); | ||
157 | module_exit(fsl_wakeup_sys_exit); | ||
158 | |||
159 | MODULE_DESCRIPTION("Freescale MPIC global timer wakeup driver"); | ||
160 | MODULE_LICENSE("GPL v2"); | ||
161 | MODULE_AUTHOR("Wang Dongsheng <dongsheng.wang@freescale.com>"); | ||
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index 3cc2f9159ab1..1be54faf60dd 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
@@ -48,6 +48,12 @@ | |||
48 | #define DBG(fmt...) | 48 | #define DBG(fmt...) |
49 | #endif | 49 | #endif |
50 | 50 | ||
51 | struct bus_type mpic_subsys = { | ||
52 | .name = "mpic", | ||
53 | .dev_name = "mpic", | ||
54 | }; | ||
55 | EXPORT_SYMBOL_GPL(mpic_subsys); | ||
56 | |||
51 | static struct mpic *mpics; | 57 | static struct mpic *mpics; |
52 | static struct mpic *mpic_primary; | 58 | static struct mpic *mpic_primary; |
53 | static DEFINE_RAW_SPINLOCK(mpic_lock); | 59 | static DEFINE_RAW_SPINLOCK(mpic_lock); |
@@ -920,6 +926,22 @@ int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type) | |||
920 | return IRQ_SET_MASK_OK_NOCOPY; | 926 | return IRQ_SET_MASK_OK_NOCOPY; |
921 | } | 927 | } |
922 | 928 | ||
929 | static int mpic_irq_set_wake(struct irq_data *d, unsigned int on) | ||
930 | { | ||
931 | struct irq_desc *desc = container_of(d, struct irq_desc, irq_data); | ||
932 | struct mpic *mpic = mpic_from_irq_data(d); | ||
933 | |||
934 | if (!(mpic->flags & MPIC_FSL)) | ||
935 | return -ENXIO; | ||
936 | |||
937 | if (on) | ||
938 | desc->action->flags |= IRQF_NO_SUSPEND; | ||
939 | else | ||
940 | desc->action->flags &= ~IRQF_NO_SUSPEND; | ||
941 | |||
942 | return 0; | ||
943 | } | ||
944 | |||
923 | void mpic_set_vector(unsigned int virq, unsigned int vector) | 945 | void mpic_set_vector(unsigned int virq, unsigned int vector) |
924 | { | 946 | { |
925 | struct mpic *mpic = mpic_from_irq(virq); | 947 | struct mpic *mpic = mpic_from_irq(virq); |
@@ -957,6 +979,7 @@ static struct irq_chip mpic_irq_chip = { | |||
957 | .irq_unmask = mpic_unmask_irq, | 979 | .irq_unmask = mpic_unmask_irq, |
958 | .irq_eoi = mpic_end_irq, | 980 | .irq_eoi = mpic_end_irq, |
959 | .irq_set_type = mpic_set_irq_type, | 981 | .irq_set_type = mpic_set_irq_type, |
982 | .irq_set_wake = mpic_irq_set_wake, | ||
960 | }; | 983 | }; |
961 | 984 | ||
962 | #ifdef CONFIG_SMP | 985 | #ifdef CONFIG_SMP |
@@ -971,6 +994,7 @@ static struct irq_chip mpic_tm_chip = { | |||
971 | .irq_mask = mpic_mask_tm, | 994 | .irq_mask = mpic_mask_tm, |
972 | .irq_unmask = mpic_unmask_tm, | 995 | .irq_unmask = mpic_unmask_tm, |
973 | .irq_eoi = mpic_end_irq, | 996 | .irq_eoi = mpic_end_irq, |
997 | .irq_set_wake = mpic_irq_set_wake, | ||
974 | }; | 998 | }; |
975 | 999 | ||
976 | #ifdef CONFIG_MPIC_U3_HT_IRQS | 1000 | #ifdef CONFIG_MPIC_U3_HT_IRQS |
@@ -1173,10 +1197,33 @@ static struct irq_domain_ops mpic_host_ops = { | |||
1173 | .xlate = mpic_host_xlate, | 1197 | .xlate = mpic_host_xlate, |
1174 | }; | 1198 | }; |
1175 | 1199 | ||
1200 | static u32 fsl_mpic_get_version(struct mpic *mpic) | ||
1201 | { | ||
1202 | u32 brr1; | ||
1203 | |||
1204 | if (!(mpic->flags & MPIC_FSL)) | ||
1205 | return 0; | ||
1206 | |||
1207 | brr1 = _mpic_read(mpic->reg_type, &mpic->thiscpuregs, | ||
1208 | MPIC_FSL_BRR1); | ||
1209 | |||
1210 | return brr1 & MPIC_FSL_BRR1_VER; | ||
1211 | } | ||
1212 | |||
1176 | /* | 1213 | /* |
1177 | * Exported functions | 1214 | * Exported functions |
1178 | */ | 1215 | */ |
1179 | 1216 | ||
1217 | u32 fsl_mpic_primary_get_version(void) | ||
1218 | { | ||
1219 | struct mpic *mpic = mpic_primary; | ||
1220 | |||
1221 | if (mpic) | ||
1222 | return fsl_mpic_get_version(mpic); | ||
1223 | |||
1224 | return 0; | ||
1225 | } | ||
1226 | |||
1180 | struct mpic * __init mpic_alloc(struct device_node *node, | 1227 | struct mpic * __init mpic_alloc(struct device_node *node, |
1181 | phys_addr_t phys_addr, | 1228 | phys_addr_t phys_addr, |
1182 | unsigned int flags, | 1229 | unsigned int flags, |
@@ -1323,7 +1370,6 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
1323 | mpic_map(mpic, mpic->paddr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000); | 1370 | mpic_map(mpic, mpic->paddr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000); |
1324 | 1371 | ||
1325 | if (mpic->flags & MPIC_FSL) { | 1372 | if (mpic->flags & MPIC_FSL) { |
1326 | u32 brr1; | ||
1327 | int ret; | 1373 | int ret; |
1328 | 1374 | ||
1329 | /* | 1375 | /* |
@@ -1334,9 +1380,7 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
1334 | mpic_map(mpic, mpic->paddr, &mpic->thiscpuregs, | 1380 | mpic_map(mpic, mpic->paddr, &mpic->thiscpuregs, |
1335 | MPIC_CPU_THISBASE, 0x1000); | 1381 | MPIC_CPU_THISBASE, 0x1000); |
1336 | 1382 | ||
1337 | brr1 = _mpic_read(mpic->reg_type, &mpic->thiscpuregs, | 1383 | fsl_version = fsl_mpic_get_version(mpic); |
1338 | MPIC_FSL_BRR1); | ||
1339 | fsl_version = brr1 & MPIC_FSL_BRR1_VER; | ||
1340 | 1384 | ||
1341 | /* Error interrupt mask register (EIMR) is required for | 1385 | /* Error interrupt mask register (EIMR) is required for |
1342 | * handling individual device error interrupts. EIMR | 1386 | * handling individual device error interrupts. EIMR |
@@ -1526,9 +1570,7 @@ void __init mpic_init(struct mpic *mpic) | |||
1526 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf); | 1570 | mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf); |
1527 | 1571 | ||
1528 | if (mpic->flags & MPIC_FSL) { | 1572 | if (mpic->flags & MPIC_FSL) { |
1529 | u32 brr1 = _mpic_read(mpic->reg_type, &mpic->thiscpuregs, | 1573 | u32 version = fsl_mpic_get_version(mpic); |
1530 | MPIC_FSL_BRR1); | ||
1531 | u32 version = brr1 & MPIC_FSL_BRR1_VER; | ||
1532 | 1574 | ||
1533 | /* | 1575 | /* |
1534 | * Timer group B is present at the latest in MPIC 3.1 (e.g. | 1576 | * Timer group B is present at the latest in MPIC 3.1 (e.g. |
@@ -1999,6 +2041,8 @@ static struct syscore_ops mpic_syscore_ops = { | |||
1999 | static int mpic_init_sys(void) | 2041 | static int mpic_init_sys(void) |
2000 | { | 2042 | { |
2001 | register_syscore_ops(&mpic_syscore_ops); | 2043 | register_syscore_ops(&mpic_syscore_ops); |
2044 | subsys_system_register(&mpic_subsys, NULL); | ||
2045 | |||
2002 | return 0; | 2046 | return 0; |
2003 | } | 2047 | } |
2004 | 2048 | ||
diff --git a/arch/powerpc/sysdev/mpic_timer.c b/arch/powerpc/sysdev/mpic_timer.c new file mode 100644 index 000000000000..c06db92a4fb1 --- /dev/null +++ b/arch/powerpc/sysdev/mpic_timer.c | |||
@@ -0,0 +1,593 @@ | |||
1 | /* | ||
2 | * MPIC timer driver | ||
3 | * | ||
4 | * Copyright 2013 Freescale Semiconductor, Inc. | ||
5 | * Author: Dongsheng Wang <Dongsheng.Wang@freescale.com> | ||
6 | * Li Yang <leoli@freescale.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <linux/errno.h> | ||
18 | #include <linux/mm.h> | ||
19 | #include <linux/interrupt.h> | ||
20 | #include <linux/slab.h> | ||
21 | #include <linux/of.h> | ||
22 | #include <linux/of_device.h> | ||
23 | #include <linux/syscore_ops.h> | ||
24 | #include <sysdev/fsl_soc.h> | ||
25 | #include <asm/io.h> | ||
26 | |||
27 | #include <asm/mpic_timer.h> | ||
28 | |||
29 | #define FSL_GLOBAL_TIMER 0x1 | ||
30 | |||
31 | /* Clock Ratio | ||
32 | * Divide by 64 0x00000300 | ||
33 | * Divide by 32 0x00000200 | ||
34 | * Divide by 16 0x00000100 | ||
35 | * Divide by 8 0x00000000 (Hardware default div) | ||
36 | */ | ||
37 | #define MPIC_TIMER_TCR_CLKDIV 0x00000300 | ||
38 | |||
39 | #define MPIC_TIMER_TCR_ROVR_OFFSET 24 | ||
40 | |||
41 | #define TIMER_STOP 0x80000000 | ||
42 | #define TIMERS_PER_GROUP 4 | ||
43 | #define MAX_TICKS (~0U >> 1) | ||
44 | #define MAX_TICKS_CASCADE (~0U) | ||
45 | #define TIMER_OFFSET(num) (1 << (TIMERS_PER_GROUP - 1 - num)) | ||
46 | |||
47 | /* tv_usec should be less than ONE_SECOND, otherwise use tv_sec */ | ||
48 | #define ONE_SECOND 1000000 | ||
49 | |||
50 | struct timer_regs { | ||
51 | u32 gtccr; | ||
52 | u32 res0[3]; | ||
53 | u32 gtbcr; | ||
54 | u32 res1[3]; | ||
55 | u32 gtvpr; | ||
56 | u32 res2[3]; | ||
57 | u32 gtdr; | ||
58 | u32 res3[3]; | ||
59 | }; | ||
60 | |||
61 | struct cascade_priv { | ||
62 | u32 tcr_value; /* TCR register: CASC & ROVR value */ | ||
63 | unsigned int cascade_map; /* cascade map */ | ||
64 | unsigned int timer_num; /* cascade control timer */ | ||
65 | }; | ||
66 | |||
67 | struct timer_group_priv { | ||
68 | struct timer_regs __iomem *regs; | ||
69 | struct mpic_timer timer[TIMERS_PER_GROUP]; | ||
70 | struct list_head node; | ||
71 | unsigned int timerfreq; | ||
72 | unsigned int idle; | ||
73 | unsigned int flags; | ||
74 | spinlock_t lock; | ||
75 | void __iomem *group_tcr; | ||
76 | }; | ||
77 | |||
78 | static struct cascade_priv cascade_timer[] = { | ||
79 | /* cascade timer 0 and 1 */ | ||
80 | {0x1, 0xc, 0x1}, | ||
81 | /* cascade timer 1 and 2 */ | ||
82 | {0x2, 0x6, 0x2}, | ||
83 | /* cascade timer 2 and 3 */ | ||
84 | {0x4, 0x3, 0x3} | ||
85 | }; | ||
86 | |||
87 | static LIST_HEAD(timer_group_list); | ||
88 | |||
89 | static void convert_ticks_to_time(struct timer_group_priv *priv, | ||
90 | const u64 ticks, struct timeval *time) | ||
91 | { | ||
92 | u64 tmp_sec; | ||
93 | |||
94 | time->tv_sec = (__kernel_time_t)div_u64(ticks, priv->timerfreq); | ||
95 | tmp_sec = (u64)time->tv_sec * (u64)priv->timerfreq; | ||
96 | |||
97 | time->tv_usec = (__kernel_suseconds_t) | ||
98 | div_u64((ticks - tmp_sec) * 1000000, priv->timerfreq); | ||
99 | |||
100 | return; | ||
101 | } | ||
102 | |||
103 | /* the time set by the user is converted to "ticks" */ | ||
104 | static int convert_time_to_ticks(struct timer_group_priv *priv, | ||
105 | const struct timeval *time, u64 *ticks) | ||
106 | { | ||
107 | u64 max_value; /* prevent u64 overflow */ | ||
108 | u64 tmp = 0; | ||
109 | |||
110 | u64 tmp_sec; | ||
111 | u64 tmp_ms; | ||
112 | u64 tmp_us; | ||
113 | |||
114 | max_value = div_u64(ULLONG_MAX, priv->timerfreq); | ||
115 | |||
116 | if (time->tv_sec > max_value || | ||
117 | (time->tv_sec == max_value && time->tv_usec > 0)) | ||
118 | return -EINVAL; | ||
119 | |||
120 | tmp_sec = (u64)time->tv_sec * (u64)priv->timerfreq; | ||
121 | tmp += tmp_sec; | ||
122 | |||
123 | tmp_ms = time->tv_usec / 1000; | ||
124 | tmp_ms = div_u64((u64)tmp_ms * (u64)priv->timerfreq, 1000); | ||
125 | tmp += tmp_ms; | ||
126 | |||
127 | tmp_us = time->tv_usec % 1000; | ||
128 | tmp_us = div_u64((u64)tmp_us * (u64)priv->timerfreq, 1000000); | ||
129 | tmp += tmp_us; | ||
130 | |||
131 | *ticks = tmp; | ||
132 | |||
133 | return 0; | ||
134 | } | ||
135 | |||
136 | /* detect whether there is a cascade timer available */ | ||
137 | static struct mpic_timer *detect_idle_cascade_timer( | ||
138 | struct timer_group_priv *priv) | ||
139 | { | ||
140 | struct cascade_priv *casc_priv; | ||
141 | unsigned int map; | ||
142 | unsigned int array_size = ARRAY_SIZE(cascade_timer); | ||
143 | unsigned int num; | ||
144 | unsigned int i; | ||
145 | unsigned long flags; | ||
146 | |||
147 | casc_priv = cascade_timer; | ||
148 | for (i = 0; i < array_size; i++) { | ||
149 | spin_lock_irqsave(&priv->lock, flags); | ||
150 | map = casc_priv->cascade_map & priv->idle; | ||
151 | if (map == casc_priv->cascade_map) { | ||
152 | num = casc_priv->timer_num; | ||
153 | priv->timer[num].cascade_handle = casc_priv; | ||
154 | |||
155 | /* set timer busy */ | ||
156 | priv->idle &= ~casc_priv->cascade_map; | ||
157 | spin_unlock_irqrestore(&priv->lock, flags); | ||
158 | return &priv->timer[num]; | ||
159 | } | ||
160 | spin_unlock_irqrestore(&priv->lock, flags); | ||
161 | casc_priv++; | ||
162 | } | ||
163 | |||
164 | return NULL; | ||
165 | } | ||
166 | |||
167 | static int set_cascade_timer(struct timer_group_priv *priv, u64 ticks, | ||
168 | unsigned int num) | ||
169 | { | ||
170 | struct cascade_priv *casc_priv; | ||
171 | u32 tcr; | ||
172 | u32 tmp_ticks; | ||
173 | u32 rem_ticks; | ||
174 | |||
175 | /* set group tcr reg for cascade */ | ||
176 | casc_priv = priv->timer[num].cascade_handle; | ||
177 | if (!casc_priv) | ||
178 | return -EINVAL; | ||
179 | |||
180 | tcr = casc_priv->tcr_value | | ||
181 | (casc_priv->tcr_value << MPIC_TIMER_TCR_ROVR_OFFSET); | ||
182 | setbits32(priv->group_tcr, tcr); | ||
183 | |||
184 | tmp_ticks = div_u64_rem(ticks, MAX_TICKS_CASCADE, &rem_ticks); | ||
185 | |||
186 | out_be32(&priv->regs[num].gtccr, 0); | ||
187 | out_be32(&priv->regs[num].gtbcr, tmp_ticks | TIMER_STOP); | ||
188 | |||
189 | out_be32(&priv->regs[num - 1].gtccr, 0); | ||
190 | out_be32(&priv->regs[num - 1].gtbcr, rem_ticks); | ||
191 | |||
192 | return 0; | ||
193 | } | ||
194 | |||
195 | static struct mpic_timer *get_cascade_timer(struct timer_group_priv *priv, | ||
196 | u64 ticks) | ||
197 | { | ||
198 | struct mpic_timer *allocated_timer; | ||
199 | |||
200 | /* Two cascade timers: Support the maximum time */ | ||
201 | const u64 max_ticks = (u64)MAX_TICKS * (u64)MAX_TICKS_CASCADE; | ||
202 | int ret; | ||
203 | |||
204 | if (ticks > max_ticks) | ||
205 | return NULL; | ||
206 | |||
207 | /* detect idle timer */ | ||
208 | allocated_timer = detect_idle_cascade_timer(priv); | ||
209 | if (!allocated_timer) | ||
210 | return NULL; | ||
211 | |||
212 | /* set ticks to timer */ | ||
213 | ret = set_cascade_timer(priv, ticks, allocated_timer->num); | ||
214 | if (ret < 0) | ||
215 | return NULL; | ||
216 | |||
217 | return allocated_timer; | ||
218 | } | ||
219 | |||
220 | static struct mpic_timer *get_timer(const struct timeval *time) | ||
221 | { | ||
222 | struct timer_group_priv *priv; | ||
223 | struct mpic_timer *timer; | ||
224 | |||
225 | u64 ticks; | ||
226 | unsigned int num; | ||
227 | unsigned int i; | ||
228 | unsigned long flags; | ||
229 | int ret; | ||
230 | |||
231 | list_for_each_entry(priv, &timer_group_list, node) { | ||
232 | ret = convert_time_to_ticks(priv, time, &ticks); | ||
233 | if (ret < 0) | ||
234 | return NULL; | ||
235 | |||
236 | if (ticks > MAX_TICKS) { | ||
237 | if (!(priv->flags & FSL_GLOBAL_TIMER)) | ||
238 | return NULL; | ||
239 | |||
240 | timer = get_cascade_timer(priv, ticks); | ||
241 | if (!timer) | ||
242 | continue; | ||
243 | |||
244 | return timer; | ||
245 | } | ||
246 | |||
247 | for (i = 0; i < TIMERS_PER_GROUP; i++) { | ||
248 | /* one timer: Reverse allocation */ | ||
249 | num = TIMERS_PER_GROUP - 1 - i; | ||
250 | spin_lock_irqsave(&priv->lock, flags); | ||
251 | if (priv->idle & (1 << i)) { | ||
252 | /* set timer busy */ | ||
253 | priv->idle &= ~(1 << i); | ||
254 | /* set ticks & stop timer */ | ||
255 | out_be32(&priv->regs[num].gtbcr, | ||
256 | ticks | TIMER_STOP); | ||
257 | out_be32(&priv->regs[num].gtccr, 0); | ||
258 | priv->timer[num].cascade_handle = NULL; | ||
259 | spin_unlock_irqrestore(&priv->lock, flags); | ||
260 | return &priv->timer[num]; | ||
261 | } | ||
262 | spin_unlock_irqrestore(&priv->lock, flags); | ||
263 | } | ||
264 | } | ||
265 | |||
266 | return NULL; | ||
267 | } | ||
268 | |||
269 | /** | ||
270 | * mpic_start_timer - start hardware timer | ||
271 | * @handle: the timer to be started. | ||
272 | * | ||
273 | * It will do ->fn(->dev) callback from the hardware interrupt at | ||
274 | * the ->timeval point in the future. | ||
275 | */ | ||
276 | void mpic_start_timer(struct mpic_timer *handle) | ||
277 | { | ||
278 | struct timer_group_priv *priv = container_of(handle, | ||
279 | struct timer_group_priv, timer[handle->num]); | ||
280 | |||
281 | clrbits32(&priv->regs[handle->num].gtbcr, TIMER_STOP); | ||
282 | } | ||
283 | EXPORT_SYMBOL(mpic_start_timer); | ||
284 | |||
285 | /** | ||
286 | * mpic_stop_timer - stop hardware timer | ||
287 | * @handle: the timer to be stoped | ||
288 | * | ||
289 | * The timer periodically generates an interrupt. Unless user stops the timer. | ||
290 | */ | ||
291 | void mpic_stop_timer(struct mpic_timer *handle) | ||
292 | { | ||
293 | struct timer_group_priv *priv = container_of(handle, | ||
294 | struct timer_group_priv, timer[handle->num]); | ||
295 | struct cascade_priv *casc_priv; | ||
296 | |||
297 | setbits32(&priv->regs[handle->num].gtbcr, TIMER_STOP); | ||
298 | |||
299 | casc_priv = priv->timer[handle->num].cascade_handle; | ||
300 | if (casc_priv) { | ||
301 | out_be32(&priv->regs[handle->num].gtccr, 0); | ||
302 | out_be32(&priv->regs[handle->num - 1].gtccr, 0); | ||
303 | } else { | ||
304 | out_be32(&priv->regs[handle->num].gtccr, 0); | ||
305 | } | ||
306 | } | ||
307 | EXPORT_SYMBOL(mpic_stop_timer); | ||
308 | |||
309 | /** | ||
310 | * mpic_get_remain_time - get timer time | ||
311 | * @handle: the timer to be selected. | ||
312 | * @time: time for timer | ||
313 | * | ||
314 | * Query timer remaining time. | ||
315 | */ | ||
316 | void mpic_get_remain_time(struct mpic_timer *handle, struct timeval *time) | ||
317 | { | ||
318 | struct timer_group_priv *priv = container_of(handle, | ||
319 | struct timer_group_priv, timer[handle->num]); | ||
320 | struct cascade_priv *casc_priv; | ||
321 | |||
322 | u64 ticks; | ||
323 | u32 tmp_ticks; | ||
324 | |||
325 | casc_priv = priv->timer[handle->num].cascade_handle; | ||
326 | if (casc_priv) { | ||
327 | tmp_ticks = in_be32(&priv->regs[handle->num].gtccr); | ||
328 | ticks = ((u64)tmp_ticks & UINT_MAX) * (u64)MAX_TICKS_CASCADE; | ||
329 | tmp_ticks = in_be32(&priv->regs[handle->num - 1].gtccr); | ||
330 | ticks += tmp_ticks; | ||
331 | } else { | ||
332 | ticks = in_be32(&priv->regs[handle->num].gtccr); | ||
333 | } | ||
334 | |||
335 | convert_ticks_to_time(priv, ticks, time); | ||
336 | } | ||
337 | EXPORT_SYMBOL(mpic_get_remain_time); | ||
338 | |||
339 | /** | ||
340 | * mpic_free_timer - free hardware timer | ||
341 | * @handle: the timer to be removed. | ||
342 | * | ||
343 | * Free the timer. | ||
344 | * | ||
345 | * Note: can not be used in interrupt context. | ||
346 | */ | ||
347 | void mpic_free_timer(struct mpic_timer *handle) | ||
348 | { | ||
349 | struct timer_group_priv *priv = container_of(handle, | ||
350 | struct timer_group_priv, timer[handle->num]); | ||
351 | |||
352 | struct cascade_priv *casc_priv; | ||
353 | unsigned long flags; | ||
354 | |||
355 | mpic_stop_timer(handle); | ||
356 | |||
357 | casc_priv = priv->timer[handle->num].cascade_handle; | ||
358 | |||
359 | free_irq(priv->timer[handle->num].irq, priv->timer[handle->num].dev); | ||
360 | |||
361 | spin_lock_irqsave(&priv->lock, flags); | ||
362 | if (casc_priv) { | ||
363 | u32 tcr; | ||
364 | tcr = casc_priv->tcr_value | (casc_priv->tcr_value << | ||
365 | MPIC_TIMER_TCR_ROVR_OFFSET); | ||
366 | clrbits32(priv->group_tcr, tcr); | ||
367 | priv->idle |= casc_priv->cascade_map; | ||
368 | priv->timer[handle->num].cascade_handle = NULL; | ||
369 | } else { | ||
370 | priv->idle |= TIMER_OFFSET(handle->num); | ||
371 | } | ||
372 | spin_unlock_irqrestore(&priv->lock, flags); | ||
373 | } | ||
374 | EXPORT_SYMBOL(mpic_free_timer); | ||
375 | |||
376 | /** | ||
377 | * mpic_request_timer - get a hardware timer | ||
378 | * @fn: interrupt handler function | ||
379 | * @dev: callback function of the data | ||
380 | * @time: time for timer | ||
381 | * | ||
382 | * This executes the "request_irq", returning NULL | ||
383 | * else "handle" on success. | ||
384 | */ | ||
385 | struct mpic_timer *mpic_request_timer(irq_handler_t fn, void *dev, | ||
386 | const struct timeval *time) | ||
387 | { | ||
388 | struct mpic_timer *allocated_timer; | ||
389 | int ret; | ||
390 | |||
391 | if (list_empty(&timer_group_list)) | ||
392 | return NULL; | ||
393 | |||
394 | if (!(time->tv_sec + time->tv_usec) || | ||
395 | time->tv_sec < 0 || time->tv_usec < 0) | ||
396 | return NULL; | ||
397 | |||
398 | if (time->tv_usec > ONE_SECOND) | ||
399 | return NULL; | ||
400 | |||
401 | allocated_timer = get_timer(time); | ||
402 | if (!allocated_timer) | ||
403 | return NULL; | ||
404 | |||
405 | ret = request_irq(allocated_timer->irq, fn, | ||
406 | IRQF_TRIGGER_LOW, "global-timer", dev); | ||
407 | if (ret) { | ||
408 | mpic_free_timer(allocated_timer); | ||
409 | return NULL; | ||
410 | } | ||
411 | |||
412 | allocated_timer->dev = dev; | ||
413 | |||
414 | return allocated_timer; | ||
415 | } | ||
416 | EXPORT_SYMBOL(mpic_request_timer); | ||
417 | |||
418 | static int timer_group_get_freq(struct device_node *np, | ||
419 | struct timer_group_priv *priv) | ||
420 | { | ||
421 | u32 div; | ||
422 | |||
423 | if (priv->flags & FSL_GLOBAL_TIMER) { | ||
424 | struct device_node *dn; | ||
425 | |||
426 | dn = of_find_compatible_node(NULL, NULL, "fsl,mpic"); | ||
427 | if (dn) { | ||
428 | of_property_read_u32(dn, "clock-frequency", | ||
429 | &priv->timerfreq); | ||
430 | of_node_put(dn); | ||
431 | } | ||
432 | } | ||
433 | |||
434 | if (priv->timerfreq <= 0) | ||
435 | return -EINVAL; | ||
436 | |||
437 | if (priv->flags & FSL_GLOBAL_TIMER) { | ||
438 | div = (1 << (MPIC_TIMER_TCR_CLKDIV >> 8)) * 8; | ||
439 | priv->timerfreq /= div; | ||
440 | } | ||
441 | |||
442 | return 0; | ||
443 | } | ||
444 | |||
445 | static int timer_group_get_irq(struct device_node *np, | ||
446 | struct timer_group_priv *priv) | ||
447 | { | ||
448 | const u32 all_timer[] = { 0, TIMERS_PER_GROUP }; | ||
449 | const u32 *p; | ||
450 | u32 offset; | ||
451 | u32 count; | ||
452 | |||
453 | unsigned int i; | ||
454 | unsigned int j; | ||
455 | unsigned int irq_index = 0; | ||
456 | unsigned int irq; | ||
457 | int len; | ||
458 | |||
459 | p = of_get_property(np, "fsl,available-ranges", &len); | ||
460 | if (p && len % (2 * sizeof(u32)) != 0) { | ||
461 | pr_err("%s: malformed available-ranges property.\n", | ||
462 | np->full_name); | ||
463 | return -EINVAL; | ||
464 | } | ||
465 | |||
466 | if (!p) { | ||
467 | p = all_timer; | ||
468 | len = sizeof(all_timer); | ||
469 | } | ||
470 | |||
471 | len /= 2 * sizeof(u32); | ||
472 | |||
473 | for (i = 0; i < len; i++) { | ||
474 | offset = p[i * 2]; | ||
475 | count = p[i * 2 + 1]; | ||
476 | for (j = 0; j < count; j++) { | ||
477 | irq = irq_of_parse_and_map(np, irq_index); | ||
478 | if (!irq) { | ||
479 | pr_err("%s: irq parse and map failed.\n", | ||
480 | np->full_name); | ||
481 | return -EINVAL; | ||
482 | } | ||
483 | |||
484 | /* Set timer idle */ | ||
485 | priv->idle |= TIMER_OFFSET((offset + j)); | ||
486 | priv->timer[offset + j].irq = irq; | ||
487 | priv->timer[offset + j].num = offset + j; | ||
488 | irq_index++; | ||
489 | } | ||
490 | } | ||
491 | |||
492 | return 0; | ||
493 | } | ||
494 | |||
495 | static void timer_group_init(struct device_node *np) | ||
496 | { | ||
497 | struct timer_group_priv *priv; | ||
498 | unsigned int i = 0; | ||
499 | int ret; | ||
500 | |||
501 | priv = kzalloc(sizeof(struct timer_group_priv), GFP_KERNEL); | ||
502 | if (!priv) { | ||
503 | pr_err("%s: cannot allocate memory for group.\n", | ||
504 | np->full_name); | ||
505 | return; | ||
506 | } | ||
507 | |||
508 | if (of_device_is_compatible(np, "fsl,mpic-global-timer")) | ||
509 | priv->flags |= FSL_GLOBAL_TIMER; | ||
510 | |||
511 | priv->regs = of_iomap(np, i++); | ||
512 | if (!priv->regs) { | ||
513 | pr_err("%s: cannot ioremap timer register address.\n", | ||
514 | np->full_name); | ||
515 | goto out; | ||
516 | } | ||
517 | |||
518 | if (priv->flags & FSL_GLOBAL_TIMER) { | ||
519 | priv->group_tcr = of_iomap(np, i++); | ||
520 | if (!priv->group_tcr) { | ||
521 | pr_err("%s: cannot ioremap tcr address.\n", | ||
522 | np->full_name); | ||
523 | goto out; | ||
524 | } | ||
525 | } | ||
526 | |||
527 | ret = timer_group_get_freq(np, priv); | ||
528 | if (ret < 0) { | ||
529 | pr_err("%s: cannot get timer frequency.\n", np->full_name); | ||
530 | goto out; | ||
531 | } | ||
532 | |||
533 | ret = timer_group_get_irq(np, priv); | ||
534 | if (ret < 0) { | ||
535 | pr_err("%s: cannot get timer irqs.\n", np->full_name); | ||
536 | goto out; | ||
537 | } | ||
538 | |||
539 | spin_lock_init(&priv->lock); | ||
540 | |||
541 | /* Init FSL timer hardware */ | ||
542 | if (priv->flags & FSL_GLOBAL_TIMER) | ||
543 | setbits32(priv->group_tcr, MPIC_TIMER_TCR_CLKDIV); | ||
544 | |||
545 | list_add_tail(&priv->node, &timer_group_list); | ||
546 | |||
547 | return; | ||
548 | |||
549 | out: | ||
550 | if (priv->regs) | ||
551 | iounmap(priv->regs); | ||
552 | |||
553 | if (priv->group_tcr) | ||
554 | iounmap(priv->group_tcr); | ||
555 | |||
556 | kfree(priv); | ||
557 | } | ||
558 | |||
559 | static void mpic_timer_resume(void) | ||
560 | { | ||
561 | struct timer_group_priv *priv; | ||
562 | |||
563 | list_for_each_entry(priv, &timer_group_list, node) { | ||
564 | /* Init FSL timer hardware */ | ||
565 | if (priv->flags & FSL_GLOBAL_TIMER) | ||
566 | setbits32(priv->group_tcr, MPIC_TIMER_TCR_CLKDIV); | ||
567 | } | ||
568 | } | ||
569 | |||
570 | static const struct of_device_id mpic_timer_ids[] = { | ||
571 | { .compatible = "fsl,mpic-global-timer", }, | ||
572 | {}, | ||
573 | }; | ||
574 | |||
575 | static struct syscore_ops mpic_timer_syscore_ops = { | ||
576 | .resume = mpic_timer_resume, | ||
577 | }; | ||
578 | |||
579 | static int __init mpic_timer_init(void) | ||
580 | { | ||
581 | struct device_node *np = NULL; | ||
582 | |||
583 | for_each_matching_node(np, mpic_timer_ids) | ||
584 | timer_group_init(np); | ||
585 | |||
586 | register_syscore_ops(&mpic_timer_syscore_ops); | ||
587 | |||
588 | if (list_empty(&timer_group_list)) | ||
589 | return -ENODEV; | ||
590 | |||
591 | return 0; | ||
592 | } | ||
593 | subsys_initcall(mpic_timer_init); | ||