ret = of_property_read_u32(pdev->dev.of_node, "intel,muxctl", &mux_val);
#include <linux/gpio/driver.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <linux/of_irq.h>
#include <linux/platform_device.h>
#define DRV_NAME "sdv_gpio"
#define SDV_NUM_PUB_GPIOS 12
#define PCI_DEVICE_ID_SDV_GPIO 0x2e67
struct sdv_gpio_chip_data {
void __iomem *gpio_pub_base;
struct irq_chip_generic *gc;
static int sdv_gpio_pub_set_type(struct irq_data *d, unsigned int type)
struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
struct sdv_gpio_chip_data *sd = gc->private;
type_reg = sd->gpio_pub_base + GPIT1R0;
type_reg = sd->gpio_pub_base + GPIT1R1;
case IRQ_TYPE_LEVEL_HIGH:
reg &= ~BIT(4 * (d->hwirq % 8));