[PATCH v3 2/3] mfd: lubbock_io: add lubbock_io board
From: robert.jarzmik@free.fr (Robert Jarzmik)
Date: 2015-01-19 19:09:33
Also in:
linux-devicetree, lkml
Lee Jones [off-list ref] writes:
On Fri, 16 Jan 2015, Robert Jarzmik wrote:quoted
As a fix, move the gpio0 chained handler setup to a place where we have the guarantee that pxa_gpio_probe() was called before, so that lubbock handler becomes the true IRQ chained handler of GPIO0, demuxing the lubbock IO board interrupts.How is this guaranteed?
In the following chunk : ret = devm_request_irq(&pdev->dev, cot->irq, lubbock_irq_handler, irqflags, dev_name(&pdev->dev), cot); if (ret == -ENOSYS) return -EPROBE_DEFER; See __setup_irq(), and see what happens if the irq chip is not set (which happens on pxa platform when the gpio driver is not registered).
quoted
+ * Lubbock motherboard driver, supporting lubbock (aka. pxa25x) soc board.Please use uppercase characters i.e. Lubbock, PXA25X, SoC, etc.
OK, your tree, your rules.
Superfluous '\n'.
Yep.
Can this be built as a module?
Not in its current form.
If so, why isn't it a tristate?
See above. Now the question is : should it be buildable as a module ? I was thinking it shouldn't because without this driver lubbock becomes a bit useless (most of its peripherals are on the motherboard).
quoted
+struct lubbock { + void __iomem *base;Random spacing.
Right.
quoted
+ pending = readl(cot->base + COT_IRQ_SET_CLR) & cot->irq_mask; + for_each_set_bit(bit, &pending, LUBBOCK_NB_IRQ) + generic_handle_irq(irq_find_mapping(cot->irqdomain, bit));I'd like to see a '\n' here.
OK.
Again, I'd prefer some separation between code and the return. (same in all cases below).
OK.
quoted
+ cot = devm_kzalloc(&pdev->dev, sizeof(*cot), GFP_KERNEL); + if (!cot) + return -ENOMEM;'\n' here.
OK.
quoted
+ res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);platform_get_irq()?
No. I need the flags.
quoted
+ if (res) { + cot->irq = (unsigned int)res->start; + irqflags = res->flags; + } + if (!cot->irq) + return -ENODEV; + + res = platform_get_resource(pdev, IORESOURCE_IRQ, 1);platform_get_irq()?
Yes, certainly.
quoted
+ writel(cot->irq_mask, cot->base + COT_IRQ_MASK_EN); + writel(0, cot->base + COT_IRQ_SET_CLR);'\n'
OK.
quoted
+ ret = devm_request_irq(&pdev->dev, cot->irq, lubbock_irq_handler, + irqflags, dev_name(&pdev->dev), cot); + if (ret == -ENOSYS) + return -EPROBE_DEFER;I haven't seen anyone do this after devm_request_irq() before. Why is it required here?
Explained above.
quoted
+ if (ret) { + dev_err(&pdev->dev, "Couldn't request main irq : ret = %d\n", + ret);I'm not keen on this type of formatting. Besides the system will print out the returned error on failure.
Well, it will print -EINVAL or -ENODEV. When I'll receive an request on the driver with -ENODEV, how will I know it will come from this request_irq() or another part of the code ... Well I can remove it if you want, but I think it's an error.
quoted
+ cot->irqdomain = + irq_domain_add_linear(pdev->dev.of_node, LUBBOCK_NB_IRQ, + &lubbock_irq_domain_ops, cot);As a personal preference, I would prefer to see: cot->irqdomain = irq_domain_add_linear(pdev->dev.of_node, LUBBOCK_NB_IRQ, &lubbock_irq_domain_ops, cot);
Your tree, your rules. OK.
quoted
+ if (!cot->irqdomain) + return -ENODEV; + + ret = 0;'ret' will be zero here, or we would have returned already.
Good catch. OK.
quoted
+ if (base_irq) + ret = irq_create_strict_mappings(cot->irqdomain, base_irq, 0, + LUBBOCK_NB_IRQ); + if (ret) { + dev_err(&pdev->dev, "Couldn't create the irq mapping %d..%d\n", + base_irq, base_irq + LUBBOCK_NB_IRQ); + return ret; + }Is this solely the check from irq_create_strict_mappings(), therefore it should be inside the previous if () { ... }.
As you wish.
quoted
+ dev_info(&pdev->dev, "base=%p, irq=%d, base_irq=%d\n", + cot->base, cot->irq, base_irq);Please remove this line.
OK.
quoted
+MODULE_DESCRIPTION("Lubbock driver");"Lubbock MFD Driver"?
Yes.
quoted
+MODULE_AUTHOR("Robert Jarzmik");Email.
Sure Thanks for the review. -- Robert