Commit 7b1e5dc8 authored by Grygorii Strashko's avatar Grygorii Strashko Committed by Linus Walleij

gpio: omap: drop dev field from gpio_bank structure

GPIO chip structure already has "parent" field which is used for the
same purpose as "dev" field in gpio_bank structure - store pointer on
GPIO device.

Hence, drop duplicated "dev" field from gpio_bank structure.
Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
Acked-by: default avatarSantosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 0bae2f17
...@@ -66,7 +66,6 @@ struct gpio_bank { ...@@ -66,7 +66,6 @@ struct gpio_bank {
u32 irq_usage; u32 irq_usage;
u32 dbck_enable_mask; u32 dbck_enable_mask;
bool dbck_enabled; bool dbck_enabled;
struct device *dev;
bool is_mpuio; bool is_mpuio;
bool dbck_flag; bool dbck_flag;
bool loses_context; bool loses_context;
...@@ -627,7 +626,7 @@ static int omap_set_gpio_wakeup(struct gpio_bank *bank, unsigned offset, ...@@ -627,7 +626,7 @@ static int omap_set_gpio_wakeup(struct gpio_bank *bank, unsigned offset,
unsigned long flags; unsigned long flags;
if (bank->non_wakeup_gpios & gpio_bit) { if (bank->non_wakeup_gpios & gpio_bit) {
dev_err(bank->dev, dev_err(bank->chip.parent,
"Unable to modify wakeup on non-wakeup GPIO%d\n", "Unable to modify wakeup on non-wakeup GPIO%d\n",
offset); offset);
return -EINVAL; return -EINVAL;
...@@ -669,7 +668,7 @@ static int omap_gpio_request(struct gpio_chip *chip, unsigned offset) ...@@ -669,7 +668,7 @@ static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
* enable the bank module. * enable the bank module.
*/ */
if (!BANK_USED(bank)) if (!BANK_USED(bank))
pm_runtime_get_sync(bank->dev); pm_runtime_get_sync(chip->parent);
raw_spin_lock_irqsave(&bank->lock, flags); raw_spin_lock_irqsave(&bank->lock, flags);
omap_enable_gpio_module(bank, offset); omap_enable_gpio_module(bank, offset);
...@@ -698,7 +697,7 @@ static void omap_gpio_free(struct gpio_chip *chip, unsigned offset) ...@@ -698,7 +697,7 @@ static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
* disable the bank module. * disable the bank module.
*/ */
if (!BANK_USED(bank)) if (!BANK_USED(bank))
pm_runtime_put(bank->dev); pm_runtime_put(chip->parent);
} }
/* /*
...@@ -723,7 +722,7 @@ static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank) ...@@ -723,7 +722,7 @@ static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
if (WARN_ON(!isr_reg)) if (WARN_ON(!isr_reg))
goto exit; goto exit;
pm_runtime_get_sync(bank->dev); pm_runtime_get_sync(bank->chip.parent);
while (1) { while (1) {
u32 isr_saved, level_mask = 0; u32 isr_saved, level_mask = 0;
...@@ -776,7 +775,7 @@ static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank) ...@@ -776,7 +775,7 @@ static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
} }
} }
exit: exit:
pm_runtime_put(bank->dev); pm_runtime_put(bank->chip.parent);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
...@@ -826,7 +825,7 @@ static void omap_gpio_irq_bus_lock(struct irq_data *data) ...@@ -826,7 +825,7 @@ static void omap_gpio_irq_bus_lock(struct irq_data *data)
struct gpio_bank *bank = omap_irq_data_get_bank(data); struct gpio_bank *bank = omap_irq_data_get_bank(data);
if (!BANK_USED(bank)) if (!BANK_USED(bank))
pm_runtime_get_sync(bank->dev); pm_runtime_get_sync(bank->chip.parent);
} }
static void gpio_irq_bus_sync_unlock(struct irq_data *data) static void gpio_irq_bus_sync_unlock(struct irq_data *data)
...@@ -838,7 +837,7 @@ static void gpio_irq_bus_sync_unlock(struct irq_data *data) ...@@ -838,7 +837,7 @@ static void gpio_irq_bus_sync_unlock(struct irq_data *data)
* disable the bank module. * disable the bank module.
*/ */
if (!BANK_USED(bank)) if (!BANK_USED(bank))
pm_runtime_put(bank->dev); pm_runtime_put(bank->chip.parent);
} }
static void omap_gpio_ack_irq(struct irq_data *d) static void omap_gpio_ack_irq(struct irq_data *d)
...@@ -1100,7 +1099,8 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc) ...@@ -1100,7 +1099,8 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
ret = gpiochip_add_data(&bank->chip, bank); ret = gpiochip_add_data(&bank->chip, bank);
if (ret) { if (ret) {
dev_err(bank->dev, "Could not register gpio chip %d\n", ret); dev_err(bank->chip.parent,
"Could not register gpio chip %d\n", ret);
return ret; return ret;
} }
...@@ -1114,7 +1114,7 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc) ...@@ -1114,7 +1114,7 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
*/ */
irq_base = irq_alloc_descs(-1, 0, bank->width, 0); irq_base = irq_alloc_descs(-1, 0, bank->width, 0);
if (irq_base < 0) { if (irq_base < 0) {
dev_err(bank->dev, "Couldn't allocate IRQ numbers\n"); dev_err(bank->chip.parent, "Couldn't allocate IRQ numbers\n");
return -ENODEV; return -ENODEV;
} }
#endif #endif
...@@ -1131,15 +1131,17 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc) ...@@ -1131,15 +1131,17 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
IRQ_TYPE_NONE); IRQ_TYPE_NONE);
if (ret) { if (ret) {
dev_err(bank->dev, "Couldn't add irqchip to gpiochip %d\n", ret); dev_err(bank->chip.parent,
"Couldn't add irqchip to gpiochip %d\n", ret);
gpiochip_remove(&bank->chip); gpiochip_remove(&bank->chip);
return -ENODEV; return -ENODEV;
} }
gpiochip_set_chained_irqchip(&bank->chip, irqc, bank->irq, NULL); gpiochip_set_chained_irqchip(&bank->chip, irqc, bank->irq, NULL);
ret = devm_request_irq(bank->dev, bank->irq, omap_gpio_irq_handler, ret = devm_request_irq(bank->chip.parent, bank->irq,
0, dev_name(bank->dev), bank); omap_gpio_irq_handler,
0, dev_name(bank->chip.parent), bank);
if (ret) if (ret)
gpiochip_remove(&bank->chip); gpiochip_remove(&bank->chip);
...@@ -1196,7 +1198,6 @@ static int omap_gpio_probe(struct platform_device *pdev) ...@@ -1196,7 +1198,6 @@ static int omap_gpio_probe(struct platform_device *pdev)
return bank->irq; return bank->irq;
} }
bank->dev = dev;
bank->chip.parent = dev; bank->chip.parent = dev;
bank->chip.owner = THIS_MODULE; bank->chip.owner = THIS_MODULE;
bank->dbck_flag = pdata->dbck_flag; bank->dbck_flag = pdata->dbck_flag;
...@@ -1235,9 +1236,9 @@ static int omap_gpio_probe(struct platform_device *pdev) ...@@ -1235,9 +1236,9 @@ static int omap_gpio_probe(struct platform_device *pdev)
} }
if (bank->dbck_flag) { if (bank->dbck_flag) {
bank->dbck = devm_clk_get(bank->dev, "dbclk"); bank->dbck = devm_clk_get(dev, "dbclk");
if (IS_ERR(bank->dbck)) { if (IS_ERR(bank->dbck)) {
dev_err(bank->dev, dev_err(dev,
"Could not get gpio dbck. Disable debounce\n"); "Could not get gpio dbck. Disable debounce\n");
bank->dbck_flag = false; bank->dbck_flag = false;
} else { } else {
...@@ -1247,9 +1248,9 @@ static int omap_gpio_probe(struct platform_device *pdev) ...@@ -1247,9 +1248,9 @@ static int omap_gpio_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, bank); platform_set_drvdata(pdev, bank);
pm_runtime_enable(bank->dev); pm_runtime_enable(dev);
pm_runtime_irq_safe(bank->dev); pm_runtime_irq_safe(dev);
pm_runtime_get_sync(bank->dev); pm_runtime_get_sync(dev);
if (bank->is_mpuio) if (bank->is_mpuio)
omap_mpuio_init(bank); omap_mpuio_init(bank);
...@@ -1258,14 +1259,14 @@ static int omap_gpio_probe(struct platform_device *pdev) ...@@ -1258,14 +1259,14 @@ static int omap_gpio_probe(struct platform_device *pdev)
ret = omap_gpio_chip_init(bank, irqc); ret = omap_gpio_chip_init(bank, irqc);
if (ret) { if (ret) {
pm_runtime_put_sync(bank->dev); pm_runtime_put_sync(dev);
pm_runtime_disable(bank->dev); pm_runtime_disable(dev);
return ret; return ret;
} }
omap_gpio_show_rev(bank); omap_gpio_show_rev(bank);
pm_runtime_put(bank->dev); pm_runtime_put(dev);
list_add_tail(&bank->node, &omap_gpio_list); list_add_tail(&bank->node, &omap_gpio_list);
...@@ -1278,7 +1279,7 @@ static int omap_gpio_remove(struct platform_device *pdev) ...@@ -1278,7 +1279,7 @@ static int omap_gpio_remove(struct platform_device *pdev)
list_del(&bank->node); list_del(&bank->node);
gpiochip_remove(&bank->chip); gpiochip_remove(&bank->chip);
pm_runtime_disable(bank->dev); pm_runtime_disable(&pdev->dev);
if (bank->dbck_flag) if (bank->dbck_flag)
clk_unprepare(bank->dbck); clk_unprepare(bank->dbck);
...@@ -1348,7 +1349,7 @@ static int omap_gpio_runtime_suspend(struct device *dev) ...@@ -1348,7 +1349,7 @@ static int omap_gpio_runtime_suspend(struct device *dev)
update_gpio_context_count: update_gpio_context_count:
if (bank->get_context_loss_count) if (bank->get_context_loss_count)
bank->context_loss_count = bank->context_loss_count =
bank->get_context_loss_count(bank->dev); bank->get_context_loss_count(dev);
omap_gpio_dbck_disable(bank); omap_gpio_dbck_disable(bank);
raw_spin_unlock_irqrestore(&bank->lock, flags); raw_spin_unlock_irqrestore(&bank->lock, flags);
...@@ -1378,7 +1379,7 @@ static int omap_gpio_runtime_resume(struct device *dev) ...@@ -1378,7 +1379,7 @@ static int omap_gpio_runtime_resume(struct device *dev)
if (bank->get_context_loss_count) if (bank->get_context_loss_count)
bank->context_loss_count = bank->context_loss_count =
bank->get_context_loss_count(bank->dev); bank->get_context_loss_count(dev);
} }
omap_gpio_dbck_enable(bank); omap_gpio_dbck_enable(bank);
...@@ -1398,7 +1399,7 @@ static int omap_gpio_runtime_resume(struct device *dev) ...@@ -1398,7 +1399,7 @@ static int omap_gpio_runtime_resume(struct device *dev)
if (!bank->get_context_loss_count) { if (!bank->get_context_loss_count) {
omap_gpio_restore_context(bank); omap_gpio_restore_context(bank);
} else { } else {
c = bank->get_context_loss_count(bank->dev); c = bank->get_context_loss_count(dev);
if (c != bank->context_loss_count) { if (c != bank->context_loss_count) {
omap_gpio_restore_context(bank); omap_gpio_restore_context(bank);
} else { } else {
...@@ -1481,7 +1482,7 @@ void omap2_gpio_prepare_for_idle(int pwr_mode) ...@@ -1481,7 +1482,7 @@ void omap2_gpio_prepare_for_idle(int pwr_mode)
bank->power_mode = pwr_mode; bank->power_mode = pwr_mode;
pm_runtime_put_sync_suspend(bank->dev); pm_runtime_put_sync_suspend(bank->chip.parent);
} }
} }
...@@ -1493,7 +1494,7 @@ void omap2_gpio_resume_after_idle(void) ...@@ -1493,7 +1494,7 @@ void omap2_gpio_resume_after_idle(void)
if (!BANK_USED(bank) || !bank->loses_context) if (!BANK_USED(bank) || !bank->loses_context)
continue; continue;
pm_runtime_get_sync(bank->dev); pm_runtime_get_sync(bank->chip.parent);
} }
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment