Source
static SIMPLE_DEV_PM_OPS(gpio_rcar_pm_ops, gpio_rcar_suspend, gpio_rcar_resume);
// SPDX-License-Identifier: GPL-2.0
/*
* Renesas R-Car GPIO Support
*
* Copyright (C) 2014 Renesas Electronics Corporation
* Copyright (C) 2013 Magnus Damm
*/
struct gpio_rcar_bank_info {
u32 iointsel;
u32 inoutsel;
u32 outdt;
u32 posneg;
u32 edglevel;
u32 bothedge;
u32 intmsk;
};
struct gpio_rcar_priv {
void __iomem *base;
spinlock_t lock;
struct device *dev;
struct gpio_chip gpio_chip;
struct irq_chip irq_chip;
unsigned int irq_parent;
atomic_t wakeup_path;
bool has_outdtsel;
bool has_both_edge_trigger;
struct gpio_rcar_bank_info bank_info;
};
/* General IO/Interrupt Switching Register */
/* General Input/Output Switching Register */
/* General Output Register */
/* General Input Register */
/* Interrupt Display Register */
/* Interrupt Clear Register */
/* Interrupt Mask Register */
/* Interrupt Mask Clear Register */
/* Positive/Negative Logic Select Register */
/* Edge/level Select Register */
/* Chattering Prevention On/Off Register */
/* Output Data Select Register */
/* One Edge/Both Edge Select Register */