/* * <:copyright-BRCM:2013:DUAL/GPL:standard * * Copyright (c) 2013 Broadcom * All Rights Reserved * * Unless you and Broadcom execute a separate written software license * agreement governing use of this software, this software is licensed * to you under the terms of the GNU General Public License version 2 * (the "GPL"), available at http://www.broadcom.com/licenses/GPLv2.php, * with the following added to such license: * * As a special exception, the copyright holders of this software give * you permission to link this software with independent modules, and * to copy and distribute the resulting executable under terms of your * choice, provided that you also meet, for each linked independent * module, the terms and conditions of the license of that module. * An independent module is a module which is not derived from this * software. The special exception does not apply to any modifications * of the software. * * Not withstanding the above, under no circumstances may you combine * this software in any way with any other Broadcom software provided * under a license other than the GPL, without Broadcom's express prior * written consent. * * :> */ // BCMFORMAT: notabs reindent:uncrustify:bcm_minimal_i4.cfg #include "boardparms.h" #include "bcm_gpio.h" #include #include #include #include /* The Linux board driver handles any necessary locking so these functions should not be called directly from elsewhere. */ unsigned int bcm_gpio_get_dir(unsigned int gpio_num) { return (GPIO->GPIODir[GPIO_NUM_TO_ARRAY_IDX(gpio_num)] & (GPIO_NUM_TO_MASK(gpio_num))) >> GPIO_NUM_TO_ARRAY_SHIFT(gpio_num); } EXPORT_SYMBOL(bcm_gpio_get_dir); void bcm_gpio_set_dir(unsigned int gpio_num, unsigned int dir) { #ifndef CONFIG_BRCM_QEMU if(dir) GPIO->GPIODir[GPIO_NUM_TO_ARRAY_IDX(gpio_num)] |= GPIO_NUM_TO_MASK(gpio_num); else GPIO->GPIODir[GPIO_NUM_TO_ARRAY_IDX(gpio_num)] &= ~GPIO_NUM_TO_MASK(gpio_num); #endif } EXPORT_SYMBOL(bcm_gpio_set_dir); unsigned int bcm_gpio_get_data(unsigned int gpio_num) { return (GPIO->GPIOio[GPIO_NUM_TO_ARRAY_IDX(gpio_num)] & (GPIO_NUM_TO_MASK(gpio_num))) >> GPIO_NUM_TO_ARRAY_SHIFT(gpio_num); } EXPORT_SYMBOL(bcm_gpio_get_data); void bcm_gpio_set_data(unsigned int gpio_num, unsigned int data) { #ifndef CONFIG_BRCM_QEMU if (data) GPIO->GPIOio[GPIO_NUM_TO_ARRAY_IDX(gpio_num)] |= GPIO_NUM_TO_MASK(gpio_num); else GPIO->GPIOio[GPIO_NUM_TO_ARRAY_IDX(gpio_num)] &= ~GPIO_NUM_TO_MASK(gpio_num); #endif } EXPORT_SYMBOL(bcm_gpio_set_data); void bcm_gpio_set_bitmask(unsigned long long mask, unsigned long long value) { unsigned long long regs = ((unsigned long long)(GPIO->GPIOio[1]) << 31) ^ (GPIO->GPIOio[0]); regs = (regs & (~mask)) | (value & mask); GPIO->GPIOio[1] = 0xFFFFFFFFU & (regs >> 31); GPIO->GPIOio[0] = 0xFFFFFFFFU & regs; } /* ********************************************************************* * bcm_common_gpio_init() * * Initialize the gpio pin state. Some board require bootloader to set * certain GPIO to known state * * Input parameters: none * * Return value: * nothing ********************************************************************* */ int bcm_common_gpio_init(void) { uint16_t gpio; unsigned short gpio_state; void* token = NULL; while( BpEnumGpioInitState(&token, &gpio) == BP_SUCCESS ) { bcm_gpio_set_dir(gpio, 1); if ( gpio & BP_ACTIVE_LOW ) gpio_state = 0; else gpio_state = 1; bcm_gpio_set_data(gpio, gpio_state); //printk("gpio init state for num 0x%x state %d\n", gpio, gpio_state); } return 0; } subsys_initcall(bcm_common_gpio_init);