Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / media / rc / mtk-cir.c
blobe88eb64e8e693c68406592024a7e6297ed80c596
1 /*
2 * Driver for Mediatek IR Receiver Controller
4 * Copyright (C) 2017 Sean Wang <sean.wang@mediatek.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk.h>
18 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/of_platform.h>
21 #include <linux/reset.h>
22 #include <media/rc-core.h>
24 #define MTK_IR_DEV KBUILD_MODNAME
26 /* Register to enable PWM and IR */
27 #define MTK_CONFIG_HIGH_REG 0x0c
29 /* Bit to enable IR pulse width detection */
30 #define MTK_PWM_EN BIT(13)
33 * Register to setting ok count whose unit based on hardware sampling period
34 * indicating IR receiving completion and then making IRQ fires
36 #define MTK_OK_COUNT(x) (((x) & GENMASK(23, 16)) << 16)
38 /* Bit to enable IR hardware function */
39 #define MTK_IR_EN BIT(0)
41 /* Bit to restart IR receiving */
42 #define MTK_IRCLR BIT(0)
44 /* Fields containing pulse width data */
45 #define MTK_WIDTH_MASK (GENMASK(7, 0))
47 /* Bit to enable interrupt */
48 #define MTK_IRINT_EN BIT(0)
50 /* Bit to clear interrupt status */
51 #define MTK_IRINT_CLR BIT(0)
53 /* Maximum count of samples */
54 #define MTK_MAX_SAMPLES 0xff
55 /* Indicate the end of IR message */
56 #define MTK_IR_END(v, p) ((v) == MTK_MAX_SAMPLES && (p) == 0)
57 /* Number of registers to record the pulse width */
58 #define MTK_CHKDATA_SZ 17
59 /* Sample period in ns */
60 #define MTK_IR_SAMPLE 46000
62 enum mtk_fields {
63 /* Register to setting software sampling period */
64 MTK_CHK_PERIOD,
65 /* Register to setting hardware sampling period */
66 MTK_HW_PERIOD,
69 enum mtk_regs {
70 /* Register to clear state of state machine */
71 MTK_IRCLR_REG,
72 /* Register containing pulse width data */
73 MTK_CHKDATA_REG,
74 /* Register to enable IR interrupt */
75 MTK_IRINT_EN_REG,
76 /* Register to ack IR interrupt */
77 MTK_IRINT_CLR_REG
80 static const u32 mt7623_regs[] = {
81 [MTK_IRCLR_REG] = 0x20,
82 [MTK_CHKDATA_REG] = 0x88,
83 [MTK_IRINT_EN_REG] = 0xcc,
84 [MTK_IRINT_CLR_REG] = 0xd0,
87 static const u32 mt7622_regs[] = {
88 [MTK_IRCLR_REG] = 0x18,
89 [MTK_CHKDATA_REG] = 0x30,
90 [MTK_IRINT_EN_REG] = 0x1c,
91 [MTK_IRINT_CLR_REG] = 0x20,
94 struct mtk_field_type {
95 u32 reg;
96 u8 offset;
97 u32 mask;
101 * struct mtk_ir_data - This is the structure holding all differences among
102 various hardwares
103 * @regs: The pointer to the array holding registers offset
104 * @fields: The pointer to the array holding fields location
105 * @div: The internal divisor for the based reference clock
106 * @ok_count: The count indicating the completion of IR data
107 * receiving when count is reached
108 * @hw_period: The value indicating the hardware sampling period
110 struct mtk_ir_data {
111 const u32 *regs;
112 const struct mtk_field_type *fields;
113 u8 div;
114 u8 ok_count;
115 u32 hw_period;
118 static const struct mtk_field_type mt7623_fields[] = {
119 [MTK_CHK_PERIOD] = {0x10, 8, GENMASK(20, 8)},
120 [MTK_HW_PERIOD] = {0x10, 0, GENMASK(7, 0)},
123 static const struct mtk_field_type mt7622_fields[] = {
124 [MTK_CHK_PERIOD] = {0x24, 0, GENMASK(24, 0)},
125 [MTK_HW_PERIOD] = {0x10, 0, GENMASK(24, 0)},
129 * struct mtk_ir - This is the main datasructure for holding the state
130 * of the driver
131 * @dev: The device pointer
132 * @rc: The rc instrance
133 * @base: The mapped register i/o base
134 * @irq: The IRQ that we are using
135 * @clk: The clock that IR internal is using
136 * @bus: The clock that software decoder is using
137 * @data: Holding specific data for vaious platform
139 struct mtk_ir {
140 struct device *dev;
141 struct rc_dev *rc;
142 void __iomem *base;
143 int irq;
144 struct clk *clk;
145 struct clk *bus;
146 const struct mtk_ir_data *data;
149 static inline u32 mtk_chkdata_reg(struct mtk_ir *ir, u32 i)
151 return ir->data->regs[MTK_CHKDATA_REG] + 4 * i;
154 static inline u32 mtk_chk_period(struct mtk_ir *ir)
156 u32 val;
158 /* Period of raw software sampling in ns */
159 val = DIV_ROUND_CLOSEST(1000000000ul,
160 clk_get_rate(ir->bus) / ir->data->div);
163 * Period for software decoder used in the
164 * unit of raw software sampling
166 val = DIV_ROUND_CLOSEST(MTK_IR_SAMPLE, val);
168 dev_dbg(ir->dev, "@pwm clk = \t%lu\n",
169 clk_get_rate(ir->bus) / ir->data->div);
170 dev_dbg(ir->dev, "@chkperiod = %08x\n", val);
172 return val;
175 static void mtk_w32_mask(struct mtk_ir *ir, u32 val, u32 mask, unsigned int reg)
177 u32 tmp;
179 tmp = __raw_readl(ir->base + reg);
180 tmp = (tmp & ~mask) | val;
181 __raw_writel(tmp, ir->base + reg);
184 static void mtk_w32(struct mtk_ir *ir, u32 val, unsigned int reg)
186 __raw_writel(val, ir->base + reg);
189 static u32 mtk_r32(struct mtk_ir *ir, unsigned int reg)
191 return __raw_readl(ir->base + reg);
194 static inline void mtk_irq_disable(struct mtk_ir *ir, u32 mask)
196 u32 val;
198 val = mtk_r32(ir, ir->data->regs[MTK_IRINT_EN_REG]);
199 mtk_w32(ir, val & ~mask, ir->data->regs[MTK_IRINT_EN_REG]);
202 static inline void mtk_irq_enable(struct mtk_ir *ir, u32 mask)
204 u32 val;
206 val = mtk_r32(ir, ir->data->regs[MTK_IRINT_EN_REG]);
207 mtk_w32(ir, val | mask, ir->data->regs[MTK_IRINT_EN_REG]);
210 static irqreturn_t mtk_ir_irq(int irqno, void *dev_id)
212 struct mtk_ir *ir = dev_id;
213 u8 wid = 0;
214 u32 i, j, val;
215 DEFINE_IR_RAW_EVENT(rawir);
218 * Reset decoder state machine explicitly is required
219 * because 1) the longest duration for space MTK IR hardware
220 * could record is not safely long. e.g 12ms if rx resolution
221 * is 46us by default. There is still the risk to satisfying
222 * every decoder to reset themselves through long enough
223 * trailing spaces and 2) the IRQ handler guarantees that
224 * start of IR message is always contained in and starting
225 * from register mtk_chkdata_reg(ir, i).
227 ir_raw_event_reset(ir->rc);
229 /* First message must be pulse */
230 rawir.pulse = false;
232 /* Handle all pulse and space IR controller captures */
233 for (i = 0 ; i < MTK_CHKDATA_SZ ; i++) {
234 val = mtk_r32(ir, mtk_chkdata_reg(ir, i));
235 dev_dbg(ir->dev, "@reg%d=0x%08x\n", i, val);
237 for (j = 0 ; j < 4 ; j++) {
238 wid = (val & (MTK_WIDTH_MASK << j * 8)) >> j * 8;
239 rawir.pulse = !rawir.pulse;
240 rawir.duration = wid * (MTK_IR_SAMPLE + 1);
241 ir_raw_event_store_with_filter(ir->rc, &rawir);
246 * The maximum number of edges the IR controller can
247 * hold is MTK_CHKDATA_SZ * 4. So if received IR messages
248 * is over the limit, the last incomplete IR message would
249 * be appended trailing space and still would be sent into
250 * ir-rc-raw to decode. That helps it is possible that it
251 * has enough information to decode a scancode even if the
252 * trailing end of the message is missing.
254 if (!MTK_IR_END(wid, rawir.pulse)) {
255 rawir.pulse = false;
256 rawir.duration = MTK_MAX_SAMPLES * (MTK_IR_SAMPLE + 1);
257 ir_raw_event_store_with_filter(ir->rc, &rawir);
260 ir_raw_event_handle(ir->rc);
263 * Restart controller for the next receive that would
264 * clear up all CHKDATA registers
266 mtk_w32_mask(ir, 0x1, MTK_IRCLR, ir->data->regs[MTK_IRCLR_REG]);
268 /* Clear interrupt status */
269 mtk_w32_mask(ir, 0x1, MTK_IRINT_CLR,
270 ir->data->regs[MTK_IRINT_CLR_REG]);
272 return IRQ_HANDLED;
275 static const struct mtk_ir_data mt7623_data = {
276 .regs = mt7623_regs,
277 .fields = mt7623_fields,
278 .ok_count = 0xf,
279 .hw_period = 0xff,
280 .div = 4,
283 static const struct mtk_ir_data mt7622_data = {
284 .regs = mt7622_regs,
285 .fields = mt7622_fields,
286 .ok_count = 0xf,
287 .hw_period = 0xffff,
288 .div = 32,
291 static const struct of_device_id mtk_ir_match[] = {
292 { .compatible = "mediatek,mt7623-cir", .data = &mt7623_data},
293 { .compatible = "mediatek,mt7622-cir", .data = &mt7622_data},
296 MODULE_DEVICE_TABLE(of, mtk_ir_match);
298 static int mtk_ir_probe(struct platform_device *pdev)
300 struct device *dev = &pdev->dev;
301 struct device_node *dn = dev->of_node;
302 const struct of_device_id *of_id =
303 of_match_device(mtk_ir_match, &pdev->dev);
304 struct resource *res;
305 struct mtk_ir *ir;
306 u32 val;
307 int ret = 0;
308 const char *map_name;
310 ir = devm_kzalloc(dev, sizeof(struct mtk_ir), GFP_KERNEL);
311 if (!ir)
312 return -ENOMEM;
314 ir->dev = dev;
315 ir->data = of_id->data;
317 ir->clk = devm_clk_get(dev, "clk");
318 if (IS_ERR(ir->clk)) {
319 dev_err(dev, "failed to get a ir clock.\n");
320 return PTR_ERR(ir->clk);
323 ir->bus = devm_clk_get(dev, "bus");
324 if (IS_ERR(ir->bus)) {
326 * For compatibility with older device trees try unnamed
327 * ir->bus uses the same clock as ir->clock.
329 ir->bus = ir->clk;
332 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
333 ir->base = devm_ioremap_resource(dev, res);
334 if (IS_ERR(ir->base)) {
335 dev_err(dev, "failed to map registers\n");
336 return PTR_ERR(ir->base);
339 ir->rc = devm_rc_allocate_device(dev, RC_DRIVER_IR_RAW);
340 if (!ir->rc) {
341 dev_err(dev, "failed to allocate device\n");
342 return -ENOMEM;
345 ir->rc->priv = ir;
346 ir->rc->device_name = MTK_IR_DEV;
347 ir->rc->input_phys = MTK_IR_DEV "/input0";
348 ir->rc->input_id.bustype = BUS_HOST;
349 ir->rc->input_id.vendor = 0x0001;
350 ir->rc->input_id.product = 0x0001;
351 ir->rc->input_id.version = 0x0001;
352 map_name = of_get_property(dn, "linux,rc-map-name", NULL);
353 ir->rc->map_name = map_name ?: RC_MAP_EMPTY;
354 ir->rc->dev.parent = dev;
355 ir->rc->driver_name = MTK_IR_DEV;
356 ir->rc->allowed_protocols = RC_PROTO_BIT_ALL;
357 ir->rc->rx_resolution = MTK_IR_SAMPLE;
358 ir->rc->timeout = MTK_MAX_SAMPLES * (MTK_IR_SAMPLE + 1);
360 ret = devm_rc_register_device(dev, ir->rc);
361 if (ret) {
362 dev_err(dev, "failed to register rc device\n");
363 return ret;
366 platform_set_drvdata(pdev, ir);
368 ir->irq = platform_get_irq(pdev, 0);
369 if (ir->irq < 0) {
370 dev_err(dev, "no irq resource\n");
371 return -ENODEV;
374 if (clk_prepare_enable(ir->clk)) {
375 dev_err(dev, "try to enable ir_clk failed\n");
376 return -EINVAL;
379 if (clk_prepare_enable(ir->bus)) {
380 dev_err(dev, "try to enable ir_clk failed\n");
381 ret = -EINVAL;
382 goto exit_clkdisable_clk;
386 * Enable interrupt after proper hardware
387 * setup and IRQ handler registration
389 mtk_irq_disable(ir, MTK_IRINT_EN);
391 ret = devm_request_irq(dev, ir->irq, mtk_ir_irq, 0, MTK_IR_DEV, ir);
392 if (ret) {
393 dev_err(dev, "failed request irq\n");
394 goto exit_clkdisable_bus;
398 * Setup software sample period as the reference of software decoder
400 val = (mtk_chk_period(ir) << ir->data->fields[MTK_CHK_PERIOD].offset) &
401 ir->data->fields[MTK_CHK_PERIOD].mask;
402 mtk_w32_mask(ir, val, ir->data->fields[MTK_CHK_PERIOD].mask,
403 ir->data->fields[MTK_CHK_PERIOD].reg);
406 * Setup hardware sampling period used to setup the proper timeout for
407 * indicating end of IR receiving completion
409 val = (ir->data->hw_period << ir->data->fields[MTK_HW_PERIOD].offset) &
410 ir->data->fields[MTK_HW_PERIOD].mask;
411 mtk_w32_mask(ir, val, ir->data->fields[MTK_HW_PERIOD].mask,
412 ir->data->fields[MTK_HW_PERIOD].reg);
414 /* Enable IR and PWM */
415 val = mtk_r32(ir, MTK_CONFIG_HIGH_REG);
416 val |= MTK_OK_COUNT(ir->data->ok_count) | MTK_PWM_EN | MTK_IR_EN;
417 mtk_w32(ir, val, MTK_CONFIG_HIGH_REG);
419 mtk_irq_enable(ir, MTK_IRINT_EN);
421 dev_info(dev, "Initialized MT7623 IR driver, sample period = %dus\n",
422 DIV_ROUND_CLOSEST(MTK_IR_SAMPLE, 1000));
424 return 0;
426 exit_clkdisable_bus:
427 clk_disable_unprepare(ir->bus);
428 exit_clkdisable_clk:
429 clk_disable_unprepare(ir->clk);
431 return ret;
434 static int mtk_ir_remove(struct platform_device *pdev)
436 struct mtk_ir *ir = platform_get_drvdata(pdev);
439 * Avoid contention between remove handler and
440 * IRQ handler so that disabling IR interrupt and
441 * waiting for pending IRQ handler to complete
443 mtk_irq_disable(ir, MTK_IRINT_EN);
444 synchronize_irq(ir->irq);
446 clk_disable_unprepare(ir->bus);
447 clk_disable_unprepare(ir->clk);
449 return 0;
452 static struct platform_driver mtk_ir_driver = {
453 .probe = mtk_ir_probe,
454 .remove = mtk_ir_remove,
455 .driver = {
456 .name = MTK_IR_DEV,
457 .of_match_table = mtk_ir_match,
461 module_platform_driver(mtk_ir_driver);
463 MODULE_DESCRIPTION("Mediatek IR Receiver Controller Driver");
464 MODULE_AUTHOR("Sean Wang <sean.wang@mediatek.com>");
465 MODULE_LICENSE("GPL");