zephyr/drivers/gpio/gpio_cmsdk_ahb.h
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
Replace the existing Apache 2.0 boilerplate header with an SPDX tag
throughout the zephyr code tree. This patch was generated via a
script run over the master branch.

Also updated doc/porting/application.rst that had a dependency on
line numbers in a literal include.

Manually updated subsys/logging/sys_log.c that had a malformed
header in the original file.  Also cleanup several cases that already
had a SPDX tag and we either got a duplicate or missed updating.

Jira: ZEP-1457

Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-19 03:50:58 +00:00

60 lines
1.8 KiB
C

/*
* Copyright (c) 2016 Linaro Limited.
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _DRIVERS_GPIO_CMSDK_AHB_
#define _DRIVERS_GPIO_CMSDK_AHB_
#include <gpio.h>
#ifdef __cplusplus
extern "C" {
#endif
/* ARM LTD CMSDK AHB General Purpose Input/Output (GPIO) */
struct gpio_cmsdk_ahb {
/* Offset: 0x000 (r/w) data register */
volatile uint32_t data;
/* Offset: 0x004 (r/w) data output latch register */
volatile uint32_t dataout;
volatile uint32_t reserved0[2];
/* Offset: 0x010 (r/w) output enable set register */
volatile uint32_t outenableset;
/* Offset: 0x014 (r/w) output enable clear register */
volatile uint32_t outenableclr;
/* Offset: 0x018 (r/w) alternate function set register */
volatile uint32_t altfuncset;
/* Offset: 0x01c (r/w) alternate function clear register */
volatile uint32_t altfuncclr;
/* Offset: 0x020 (r/w) interrupt enable set register */
volatile uint32_t intenset;
/* Offset: 0x024 (r/w) interrupt enable clear register */
volatile uint32_t intenclr;
/* Offset: 0x028 (r/w) interrupt type set register */
volatile uint32_t inttypeset;
/* Offset: 0x02c (r/w) interrupt type clear register */
volatile uint32_t inttypeclr;
/* Offset: 0x030 (r/w) interrupt polarity set register */
volatile uint32_t intpolset;
/* Offset: 0x034 (r/w) interrupt polarity clear register */
volatile uint32_t intpolclr;
union {
/* Offset: 0x038 (r/ ) interrupt status register */
volatile uint32_t intstatus;
/* Offset: 0x038 ( /w) interrupt clear register */
volatile uint32_t intclear;
};
volatile uint32_t reserved1[241];
/* Offset: 0x400 - 0x7fc lower byte masked access register (r/w) */
volatile uint32_t lb_masked[256];
/* Offset: 0x800 - 0xbfc upper byte masked access register (r/w) */
volatile uint32_t ub_masked[256];
};
#ifdef __cplusplus
}
#endif
#endif /* _DRIVERS_GPIO_CMSDK_AHB_ */