Source
// SPDX-License-Identifier: GPL-2.0
/*
* GPIO controller driver for Intel Lynxpoint PCH chipset>
* Copyright (c) 2012, Intel Corporation.
*
* Author: Mathias Nyman <mathias.nyman@linux.intel.com>
*/
/* LynxPoint chipset has support for 94 gpio pins */
/* Bitmapped register offsets */
/* Bitmap, set by bios, 0: pin reserved for ACPI */
/* set APIC IRQ to IRQ14 or IRQ15 for all pins */
/* Each pin has two 32 bit config registers, starting at 0x100 */
/* LP_CONFIG1 reg bits */
/* 0: Edge, 1: Level */
/* Invert interrupt triggering */
/* 0: Output, 1: Input */
/* 0: Native, 1: GPIO */
/* LP_CONFIG2 reg bits */
/* disable input sensing */
/* weak pull options */
struct lp_gpio {
struct gpio_chip chip;
struct platform_device *pdev;
spinlock_t lock;
unsigned long reg_base;
};
/*
* Lynxpoint gpios are controlled through both bitmapped registers and
* per gpio specific registers. The bitmapped registers are in chunks of
* 3 x 32bit registers to cover all 94 gpios
*
* per gpio specific registers consist of two 32bit registers per gpio
* (LP_CONFIG1 and LP_CONFIG2), with 94 gpios there's a total of
* 188 config registers.
*
* A simplified view of the register layout look like this: