Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 2 | /* |
Guan Xuetao | 2809e80 | 2011-05-26 16:43:27 +0800 | [diff] [blame] | 3 | * RTC driver code specific to PKUnity SoC and UniCore ISA |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 4 | * |
| 5 | * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn> |
| 6 | * Copyright (C) 2001-2010 Guan Xuetao |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/fs.h> |
| 11 | #include <linux/string.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/rtc.h> |
| 16 | #include <linux/bcd.h> |
| 17 | #include <linux/clk.h> |
| 18 | #include <linux/log2.h> |
| 19 | #include <linux/slab.h> |
| 20 | #include <linux/uaccess.h> |
| 21 | #include <linux/io.h> |
| 22 | |
| 23 | #include <asm/irq.h> |
| 24 | #include <mach/hardware.h> |
| 25 | |
| 26 | static struct resource *puv3_rtc_mem; |
| 27 | |
| 28 | static int puv3_rtc_alarmno = IRQ_RTCAlarm; |
| 29 | static int puv3_rtc_tickno = IRQ_RTC; |
| 30 | |
| 31 | static DEFINE_SPINLOCK(puv3_rtc_pie_lock); |
| 32 | |
| 33 | /* IRQ Handlers */ |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 34 | static irqreturn_t puv3_rtc_alarmirq(int irq, void *id) |
| 35 | { |
| 36 | struct rtc_device *rdev = id; |
| 37 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 38 | writel(readl(RTC_RTSR) | RTC_RTSR_AL, RTC_RTSR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 39 | rtc_update_irq(rdev, 1, RTC_AF | RTC_IRQF); |
| 40 | return IRQ_HANDLED; |
| 41 | } |
| 42 | |
| 43 | static irqreturn_t puv3_rtc_tickirq(int irq, void *id) |
| 44 | { |
| 45 | struct rtc_device *rdev = id; |
| 46 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 47 | writel(readl(RTC_RTSR) | RTC_RTSR_HZ, RTC_RTSR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 48 | rtc_update_irq(rdev, 1, RTC_PF | RTC_IRQF); |
| 49 | return IRQ_HANDLED; |
| 50 | } |
| 51 | |
| 52 | /* Update control registers */ |
Sangjung Woo | 1fbc4c4 | 2013-11-12 15:11:00 -0800 | [diff] [blame] | 53 | static void puv3_rtc_setaie(struct device *dev, int to) |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 54 | { |
| 55 | unsigned int tmp; |
| 56 | |
Sangjung Woo | 1fbc4c4 | 2013-11-12 15:11:00 -0800 | [diff] [blame] | 57 | dev_dbg(dev, "%s: aie=%d\n", __func__, to); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 58 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 59 | tmp = readl(RTC_RTSR) & ~RTC_RTSR_ALE; |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 60 | |
| 61 | if (to) |
| 62 | tmp |= RTC_RTSR_ALE; |
| 63 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 64 | writel(tmp, RTC_RTSR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static int puv3_rtc_setpie(struct device *dev, int enabled) |
| 68 | { |
| 69 | unsigned int tmp; |
| 70 | |
Chen Gang | c863810 | 2014-05-03 13:07:57 +0800 | [diff] [blame] | 71 | dev_dbg(dev, "%s: pie=%d\n", __func__, enabled); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 72 | |
| 73 | spin_lock_irq(&puv3_rtc_pie_lock); |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 74 | tmp = readl(RTC_RTSR) & ~RTC_RTSR_HZE; |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 75 | |
| 76 | if (enabled) |
| 77 | tmp |= RTC_RTSR_HZE; |
| 78 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 79 | writel(tmp, RTC_RTSR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 80 | spin_unlock_irq(&puv3_rtc_pie_lock); |
| 81 | |
| 82 | return 0; |
| 83 | } |
| 84 | |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 85 | /* Time read/write */ |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 86 | static int puv3_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm) |
| 87 | { |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 88 | rtc_time_to_tm(readl(RTC_RCNR), rtc_tm); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 89 | |
Andy Shevchenko | b2db0a2 | 2018-12-04 23:23:21 +0200 | [diff] [blame] | 90 | dev_dbg(dev, "read time %ptRr\n", rtc_tm); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 91 | |
| 92 | return 0; |
| 93 | } |
| 94 | |
| 95 | static int puv3_rtc_settime(struct device *dev, struct rtc_time *tm) |
| 96 | { |
| 97 | unsigned long rtc_count = 0; |
| 98 | |
Andy Shevchenko | b2db0a2 | 2018-12-04 23:23:21 +0200 | [diff] [blame] | 99 | dev_dbg(dev, "set time %ptRr\n", tm); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 100 | |
| 101 | rtc_tm_to_time(tm, &rtc_count); |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 102 | writel(rtc_count, RTC_RCNR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 103 | |
| 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | static int puv3_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 108 | { |
| 109 | struct rtc_time *alm_tm = &alrm->time; |
| 110 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 111 | rtc_time_to_tm(readl(RTC_RTAR), alm_tm); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 112 | |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 113 | alrm->enabled = readl(RTC_RTSR) & RTC_RTSR_ALE; |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 114 | |
Andy Shevchenko | b2db0a2 | 2018-12-04 23:23:21 +0200 | [diff] [blame] | 115 | dev_dbg(dev, "read alarm: %d, %ptRr\n", alrm->enabled, alm_tm); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static int puv3_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 121 | { |
| 122 | struct rtc_time *tm = &alrm->time; |
| 123 | unsigned long rtcalarm_count = 0; |
| 124 | |
Andy Shevchenko | b2db0a2 | 2018-12-04 23:23:21 +0200 | [diff] [blame] | 125 | dev_dbg(dev, "set alarm: %d, %ptRr\n", alrm->enabled, tm); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 126 | |
| 127 | rtc_tm_to_time(tm, &rtcalarm_count); |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 128 | writel(rtcalarm_count, RTC_RTAR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 129 | |
Chen Gang | 73fa540 | 2014-05-03 13:09:02 +0800 | [diff] [blame] | 130 | puv3_rtc_setaie(dev, alrm->enabled); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 131 | |
| 132 | if (alrm->enabled) |
| 133 | enable_irq_wake(puv3_rtc_alarmno); |
| 134 | else |
| 135 | disable_irq_wake(puv3_rtc_alarmno); |
| 136 | |
| 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | static int puv3_rtc_proc(struct device *dev, struct seq_file *seq) |
| 141 | { |
| 142 | seq_printf(seq, "periodic_IRQ\t: %s\n", |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 143 | (readl(RTC_RTSR) & RTC_RTSR_HZE) ? "yes" : "no"); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 144 | return 0; |
| 145 | } |
| 146 | |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 147 | static const struct rtc_class_ops puv3_rtcops = { |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 148 | .read_time = puv3_rtc_gettime, |
| 149 | .set_time = puv3_rtc_settime, |
| 150 | .read_alarm = puv3_rtc_getalarm, |
| 151 | .set_alarm = puv3_rtc_setalarm, |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 152 | .proc = puv3_rtc_proc, |
| 153 | }; |
| 154 | |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 155 | static void puv3_rtc_enable(struct device *dev, int en) |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 156 | { |
| 157 | if (!en) { |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 158 | writel(readl(RTC_RTSR) & ~RTC_RTSR_HZE, RTC_RTSR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 159 | } else { |
| 160 | /* re-enable the device, and check it is ok */ |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 161 | if ((readl(RTC_RTSR) & RTC_RTSR_HZE) == 0) { |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 162 | dev_info(dev, "rtc disabled, re-enabling\n"); |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 163 | writel(readl(RTC_RTSR) | RTC_RTSR_HZE, RTC_RTSR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 164 | } |
| 165 | } |
| 166 | } |
| 167 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 168 | static int puv3_rtc_remove(struct platform_device *dev) |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 169 | { |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 170 | puv3_rtc_setpie(&dev->dev, 0); |
Sangjung Woo | 1fbc4c4 | 2013-11-12 15:11:00 -0800 | [diff] [blame] | 171 | puv3_rtc_setaie(&dev->dev, 0); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 172 | |
| 173 | release_resource(puv3_rtc_mem); |
| 174 | kfree(puv3_rtc_mem); |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 179 | static int puv3_rtc_probe(struct platform_device *pdev) |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 180 | { |
| 181 | struct rtc_device *rtc; |
| 182 | struct resource *res; |
| 183 | int ret; |
| 184 | |
Sangjung Woo | 1fbc4c4 | 2013-11-12 15:11:00 -0800 | [diff] [blame] | 185 | dev_dbg(&pdev->dev, "%s: probe=%p\n", __func__, pdev); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 186 | |
| 187 | /* find the IRQs */ |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 188 | puv3_rtc_tickno = platform_get_irq(pdev, 1); |
| 189 | if (puv3_rtc_tickno < 0) { |
| 190 | dev_err(&pdev->dev, "no irq for rtc tick\n"); |
| 191 | return -ENOENT; |
| 192 | } |
| 193 | |
| 194 | puv3_rtc_alarmno = platform_get_irq(pdev, 0); |
| 195 | if (puv3_rtc_alarmno < 0) { |
| 196 | dev_err(&pdev->dev, "no irq for alarm\n"); |
| 197 | return -ENOENT; |
| 198 | } |
| 199 | |
Sangjung Woo | 1fbc4c4 | 2013-11-12 15:11:00 -0800 | [diff] [blame] | 200 | dev_dbg(&pdev->dev, "PKUnity_rtc: tick irq %d, alarm irq %d\n", |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 201 | puv3_rtc_tickno, puv3_rtc_alarmno); |
| 202 | |
Alexandre Belloni | 5539ba5 | 2017-08-22 11:48:41 +0200 | [diff] [blame] | 203 | rtc = devm_rtc_allocate_device(&pdev->dev); |
| 204 | if (IS_ERR(rtc)) |
| 205 | return PTR_ERR(rtc); |
| 206 | |
Alexandre Belloni | 60d3455 | 2017-08-22 11:59:07 +0200 | [diff] [blame] | 207 | ret = devm_request_irq(&pdev->dev, puv3_rtc_alarmno, puv3_rtc_alarmirq, |
| 208 | 0, "pkunity-rtc alarm", rtc); |
| 209 | if (ret) { |
| 210 | dev_err(&pdev->dev, "IRQ%d error %d\n", puv3_rtc_alarmno, ret); |
| 211 | return ret; |
| 212 | } |
| 213 | |
| 214 | ret = devm_request_irq(&pdev->dev, puv3_rtc_tickno, puv3_rtc_tickirq, |
| 215 | 0, "pkunity-rtc tick", rtc); |
| 216 | if (ret) { |
| 217 | dev_err(&pdev->dev, "IRQ%d error %d\n", puv3_rtc_tickno, ret); |
| 218 | return ret; |
| 219 | } |
| 220 | |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 221 | /* get the memory region */ |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 222 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 223 | if (res == NULL) { |
| 224 | dev_err(&pdev->dev, "failed to get memory region resource\n"); |
| 225 | return -ENOENT; |
| 226 | } |
| 227 | |
Joe Perches | 28f65c11 | 2011-06-09 09:13:32 -0700 | [diff] [blame] | 228 | puv3_rtc_mem = request_mem_region(res->start, resource_size(res), |
| 229 | pdev->name); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 230 | |
| 231 | if (puv3_rtc_mem == NULL) { |
| 232 | dev_err(&pdev->dev, "failed to reserve memory region\n"); |
| 233 | ret = -ENOENT; |
| 234 | goto err_nores; |
| 235 | } |
| 236 | |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 237 | puv3_rtc_enable(&pdev->dev, 1); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 238 | |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 239 | /* register RTC and exit */ |
Alexandre Belloni | 5539ba5 | 2017-08-22 11:48:41 +0200 | [diff] [blame] | 240 | rtc->ops = &puv3_rtcops; |
| 241 | ret = rtc_register_device(rtc); |
| 242 | if (ret) { |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 243 | dev_err(&pdev->dev, "cannot attach rtc\n"); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 244 | goto err_nortc; |
| 245 | } |
| 246 | |
| 247 | /* platform setup code should have handled this; sigh */ |
| 248 | if (!device_can_wakeup(&pdev->dev)) |
| 249 | device_init_wakeup(&pdev->dev, 1); |
| 250 | |
| 251 | platform_set_drvdata(pdev, rtc); |
| 252 | return 0; |
| 253 | |
| 254 | err_nortc: |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 255 | puv3_rtc_enable(&pdev->dev, 0); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 256 | release_resource(puv3_rtc_mem); |
| 257 | |
| 258 | err_nores: |
| 259 | return ret; |
| 260 | } |
| 261 | |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 262 | #ifdef CONFIG_PM_SLEEP |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 263 | static int ticnt_save; |
| 264 | |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 265 | static int puv3_rtc_suspend(struct device *dev) |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 266 | { |
| 267 | /* save RTAR for anyone using periodic interrupts */ |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 268 | ticnt_save = readl(RTC_RTAR); |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 269 | puv3_rtc_enable(dev, 0); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 270 | return 0; |
| 271 | } |
| 272 | |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 273 | static int puv3_rtc_resume(struct device *dev) |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 274 | { |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 275 | puv3_rtc_enable(dev, 1); |
GuanXuetao | e5abf78 | 2011-02-26 21:21:18 +0800 | [diff] [blame] | 276 | writel(ticnt_save, RTC_RTAR); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 277 | return 0; |
| 278 | } |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 279 | #endif |
| 280 | |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 281 | static SIMPLE_DEV_PM_OPS(puv3_rtc_pm_ops, puv3_rtc_suspend, puv3_rtc_resume); |
| 282 | |
Guan Xuetao | b3a0aa3 | 2011-12-28 09:24:29 +0800 | [diff] [blame] | 283 | static struct platform_driver puv3_rtc_driver = { |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 284 | .probe = puv3_rtc_probe, |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 285 | .remove = puv3_rtc_remove, |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 286 | .driver = { |
| 287 | .name = "PKUnity-v3-RTC", |
Jingoo Han | 5936fdb | 2013-04-29 16:21:02 -0700 | [diff] [blame] | 288 | .pm = &puv3_rtc_pm_ops, |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 289 | } |
| 290 | }; |
| 291 | |
Guan Xuetao | b3a0aa3 | 2011-12-28 09:24:29 +0800 | [diff] [blame] | 292 | module_platform_driver(puv3_rtc_driver); |
GuanXuetao | 02b2ee1 | 2011-01-15 18:19:03 +0800 | [diff] [blame] | 293 | |
| 294 | MODULE_DESCRIPTION("RTC Driver for the PKUnity v3 chip"); |
| 295 | MODULE_AUTHOR("Hu Dongliang"); |
| 296 | MODULE_LICENSE("GPL v2"); |