arm: Freescale K64 GPIO driver

Basic driver support for the Freescale K64 GPIO module.

Note that only pin direction, read and write are supported.

Change-Id: I6587bb260197a00497be9ac991002e3dde54718d
Signed-off-by: Jeff Blais <jeff.blais@windriver.com>
This commit is contained in:
Jeff Blais 2015-11-03 08:52:12 -05:00 committed by Gerrit Code Review
commit 0fd7af2a52
5 changed files with 432 additions and 1 deletions

View file

@ -1,7 +1,7 @@
# Kconfig - FSL FRDM K64F platform configuration options # Kconfig - FSL FRDM K64F platform configuration options
# #
# Copyright (c) 2014-2015 Wind River Systems, Inc. # Copyright (c) 2014-2016 Wind River Systems, Inc.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.
@ -151,4 +151,59 @@ config BLUETOOTH_UART_ON_DEV_NAME
endif endif
config GPIO
def_bool y
if GPIO
config GPIO_K64
def_bool y
config GPIO_K64_A
def_bool y
config GPIO_K64_B
def_bool y
config GPIO_K64_C
def_bool y
config GPIO_K64_D
def_bool y
config GPIO_K64_E
def_bool y
endif
if GPIO_K64
config PORT_K64_BASE_ADDR
default 0x40049000
endif
if GPIO_K64_A
config GPIO_K64_A_BASE_ADDR
default 0x400FF000
endif
if GPIO_K64_B
config GPIO_K64_B_BASE_ADDR
default 0x400FF040
endif
if GPIO_K64_C
config GPIO_K64_C_BASE_ADDR
default 0x400FF080
endif
if GPIO_K64_D
config GPIO_K64_D_BASE_ADDR
default 0x400FF0C0
endif
if GPIO_K64_E
config GPIO_K64_E_BASE_ADDR
default 0x400FF100
endif
endif endif

View file

@ -703,6 +703,103 @@ config GPIO_SCH_1_BITS
help help
The total of pins the controller can manage (CPU dependent) The total of pins the controller can manage (CPU dependent)
config GPIO_K64
bool "Freescale K64-based GPIO driver"
depends on GPIO
default n
help
Enable driver for Freescale K64-based GPIOs.
config GPIO_K64_A
bool "Freescale K64-based GPIO Port A"
depends on GPIO_K64
default n
help
Enable config options for Freescale K64-based GPIO port A.
config GPIO_K64_A_DEV_NAME
string "Freescale K64-based GPIO Port A Device Name"
depends on GPIO_K64_A
default "GPIO_0"
help
Specify the device name.
config GPIO_K64_A_BASE_ADDR
hex "Freescale K64-based GPIO Port A base address"
depends on GPIO_K64_A
config GPIO_K64_B
bool "Freescale K64-based GPIO Port B"
depends on GPIO_K64
default n
help
Enable config options for Freescale K64-based GPIO port B.
config GPIO_K64_B_DEV_NAME
string "Freescale K64-based GPIO Port B Device Name"
depends on GPIO_K64_B
default "GPIO_1"
help
Specify the device name.
config GPIO_K64_B_BASE_ADDR
hex "Freescale K64-based GPIO Port B base address"
depends on GPIO_K64_B
config GPIO_K64_C
bool "Freescale K64-based GPIO Port B"
depends on GPIO_K64
default n
help
Enable config options for Freescale K64-based GPIO port C.
config GPIO_K64_C_DEV_NAME
string "Freescale K64-based GPIO Port B Device Name"
depends on GPIO_K64_C
default "GPIO_2"
help
Specify the device name.
config GPIO_K64_C_BASE_ADDR
hex "Freescale K64-based GPIO Port C base address"
depends on GPIO_K64_C
config GPIO_K64_D
bool "Freescale K64-based GPIO Port D"
depends on GPIO_K64
default n
help
Enable config options for Freescale K64-based GPIO port D.
config GPIO_K64_D_DEV_NAME
string "Freescale K64-based GPIO Port D Device Name"
depends on GPIO_K64_D
default "GPIO_3"
help
Specify the device name.
config GPIO_K64_D_BASE_ADDR
hex "Freescale K64-based GPIO Port D base address"
depends on GPIO_K64_D
config GPIO_K64_E
bool "Freescale K64-based GPIO Port E"
depends on GPIO_K64
default n
help
Enable config options for Freescale K64-based GPIO port E.
config GPIO_K64_E_DEV_NAME
string "Freescale K64-based GPIO Port E Device Name"
depends on GPIO_K64_E
default "GPIO_4"
help
Specify the device name.
config GPIO_K64_E_BASE_ADDR
hex "Freescale K64-based GPIO Port E base address"
depends on GPIO_K64_E
source "drivers/gpio/Kconfig.atmel_sam3" source "drivers/gpio/Kconfig.atmel_sam3"
endif # GPIO endif # GPIO

View file

@ -7,3 +7,5 @@ obj-$(CONFIG_GPIO_MMIO) += gpio_mmio.o
obj-$(CONFIG_GPIO_SCH) += gpio_sch.o obj-$(CONFIG_GPIO_SCH) += gpio_sch.o
obj-$(CONFIG_GPIO_QMSI) += gpio_qmsi.o obj-$(CONFIG_GPIO_QMSI) += gpio_qmsi.o
obj-$(CONFIG_GPIO_ATMEL_SAM3) += gpio_atmel_sam3.o obj-$(CONFIG_GPIO_ATMEL_SAM3) += gpio_atmel_sam3.o
obj-$(CONFIG_GPIO_K64) += gpio_k64.o

233
drivers/gpio/gpio_k64.c Normal file
View file

@ -0,0 +1,233 @@
/*
* Copyright (c) 2016, Wind River Systems, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file Driver for the Freescale K64 GPIO module.
*/
#include <nanokernel.h>
#include <device.h>
#include <init.h>
#include <gpio.h>
#include "gpio_k64.h"
static int gpio_k64_config(struct device *dev, int access_op,
uint32_t pin, int flags)
{
const struct gpio_k64_config * const cfg = dev->config->config_info;
uint32_t value = 0;
/*
* Setup direction register:
* 0 - pin is input, 1 - pin is output
*/
if (access_op == GPIO_ACCESS_BY_PIN) {
if ((flags & GPIO_DIR_MASK) == GPIO_DIR_IN) {
sys_clear_bit((cfg->base_addr + GPIO_K64_DIR_OFFSET), pin);
} else {
sys_set_bit((cfg->base_addr + GPIO_K64_DIR_OFFSET), pin);
}
} else { /* GPIO_ACCESS_BY_PORT */
if ((flags & GPIO_DIR_MASK) == GPIO_DIR_IN) {
value = 0x0;
} else {
value = 0xFFFFFFFF;
}
sys_write32(value, (cfg->base_addr + GPIO_K64_DIR_OFFSET));
}
return DEV_OK;
}
static int gpio_k64_write(struct device *dev, int access_op,
uint32_t pin, uint32_t value)
{
const struct gpio_k64_config * const cfg = dev->config->config_info;
if (access_op == GPIO_ACCESS_BY_PIN) {
if (value) {
sys_set_bit((cfg->base_addr + GPIO_K64_DATA_OUT_OFFSET), pin);
} else {
sys_clear_bit((cfg->base_addr + GPIO_K64_DATA_OUT_OFFSET), pin);
}
} else { /* GPIO_ACCESS_BY_PORT */
sys_write32(value, (cfg->base_addr + GPIO_K64_DATA_OUT_OFFSET));
}
return DEV_OK;
}
static int gpio_k64_read(struct device *dev, int access_op,
uint32_t pin, uint32_t *value)
{
const struct gpio_k64_config * const cfg = dev->config->config_info;
*value = sys_read32((cfg->base_addr + GPIO_K64_DATA_IN_OFFSET));
if (access_op == GPIO_ACCESS_BY_PIN) {
*value = (*value & (1 << pin)) >> pin;
}
/* nothing more to do for GPIO_ACCESS_BY_PORT */
return DEV_OK;
}
static int gpio_k64_set_callback(struct device *dev, gpio_callback_t callback)
{
ARG_UNUSED(dev);
ARG_UNUSED(callback);
return DEV_INVALID_OP;
}
static int gpio_k64_enable_callback(struct device *dev, int access_op,
uint32_t pin)
{
ARG_UNUSED(dev);
ARG_UNUSED(access_op);
ARG_UNUSED(pin);
return DEV_INVALID_OP;
}
static int gpio_k64_disable_callback(struct device *dev, int access_op,
uint32_t pin)
{
ARG_UNUSED(dev);
ARG_UNUSED(access_op);
ARG_UNUSED(pin);
return DEV_INVALID_OP;
}
static int gpio_k64_suspend_port(struct device *dev)
{
ARG_UNUSED(dev);
return DEV_INVALID_OP;
}
static int gpio_k64_resume_port(struct device *dev)
{
ARG_UNUSED(dev);
return DEV_INVALID_OP;
}
static struct gpio_driver_api gpio_k64_drv_api_funcs = {
.config = gpio_k64_config,
.write = gpio_k64_write,
.read = gpio_k64_read,
.set_callback = gpio_k64_set_callback,
.enable_callback = gpio_k64_enable_callback,
.disable_callback = gpio_k64_disable_callback,
.suspend = gpio_k64_suspend_port,
.resume = gpio_k64_resume_port,
};
/**
* @brief Initialization function of Freescale K64-based GPIO port
*
* @param dev Device structure pointer
* @return DEV_OK if successful, failed otherwise.
*/
int gpio_k64_init(struct device *dev)
{
dev->driver_api = &gpio_k64_drv_api_funcs;
return DEV_OK;
}
/* Initialization for Port A */
#ifdef CONFIG_GPIO_K64_A
static struct gpio_k64_config gpio_k64_A_cfg = {
.base_addr = CONFIG_GPIO_K64_A_BASE_ADDR,
};
DEVICE_INIT(gpio_k64_A, CONFIG_GPIO_K64_A_DEV_NAME, gpio_k64_init,
NULL, &gpio_k64_A_cfg,
SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
#endif /* CONFIG_GPIO_K64_A */
/* Initialization for Port B */
#ifdef CONFIG_GPIO_K64_B
static struct gpio_k64_config gpio_k64_B_cfg = {
.base_addr = CONFIG_GPIO_K64_B_BASE_ADDR,
};
DEVICE_INIT(gpio_k64_B, CONFIG_GPIO_K64_B_DEV_NAME, gpio_k64_init,
NULL, &gpio_k64_B_cfg,
SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
#endif /* CONFIG_GPIO_K64_B */
/* Initialization for Port C */
#ifdef CONFIG_GPIO_K64_C
static struct gpio_k64_config gpio_k64_C_cfg = {
.base_addr = CONFIG_GPIO_K64_C_BASE_ADDR,
};
DEVICE_INIT(gpio_k64_C, CONFIG_GPIO_K64_C_DEV_NAME, gpio_k64_init,
NULL, &gpio_k64_C_cfg,
SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
#endif /* CONFIG_GPIO_K64_C */
/* Initialization for Port D */
#ifdef CONFIG_GPIO_K64_D
static struct gpio_k64_config gpio_k64_D_cfg = {
.base_addr = CONFIG_GPIO_K64_D_BASE_ADDR,
};
DEVICE_INIT(gpio_k64_D, CONFIG_GPIO_K64_D_DEV_NAME, gpio_k64_init,
NULL, &gpio_k64_D_cfg,
SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
#endif /* CONFIG_GPIO_K64_D */
/* Initialization for Port E */
#ifdef CONFIG_GPIO_K64_E
static struct gpio_k64_config gpio_k64_E_cfg = {
.base_addr = CONFIG_GPIO_K64_E_BASE_ADDR,
};
DEVICE_INIT(gpio_k64_E, CONFIG_GPIO_K64_E_DEV_NAME, gpio_k64_init,
NULL, &gpio_k64_E_cfg,
SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
#endif /* CONFIG_GPIO_K64_E */

44
drivers/gpio/gpio_k64.h Normal file
View file

@ -0,0 +1,44 @@
/*
* Copyright (c) 2016, Wind River Systems, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file Header file for the Freescale K64 GPIO module.
*/
#ifndef _GPIO_K64_H_
#define _GPIO_K64_H_
#include <nanokernel.h>
#include <gpio.h>
/* GPIO Port Register offsets */
#define GPIO_K64_DATA_OUT_OFFSET 0x00 /* Port Data Output Reg. offset */
#define GPIO_K64_SET_OUT_OFFSET 0x04 /* Port Set Output Reg. offset */
#define GPIO_K64_CLR_OUT_OFFSET 0x08 /* Port Clear Output Reg. offset */
#define GPIO_K64_TOGGLE_OUT_OFFSET 0x0C /* Port Toggle Output Reg. offset */
#define GPIO_K64_DATA_IN_OFFSET 0x10 /* Port Data Input Reg. offset */
#define GPIO_K64_DIR_OFFSET 0x14 /* Port Data Direction Reg. offset */
/** Configuration data */
struct gpio_k64_config {
/* base address */
uint32_t base_addr;
};
#endif /* _GPIO_K64_H_ */