b73fda3a05
Change-Id: I907a0b599ef65061360c215580f96f59b78b615b
134 lines
4.4 KiB
C
134 lines
4.4 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2011 by Amaury Pouly
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
|
|
#ifndef __PINCTRL_IMX233_H__
|
|
#define __PINCTRL_IMX233_H__
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "regs/regs-pinctrl.h"
|
|
|
|
// set to debug pinctrl use
|
|
#define IMX233_PINCTRL_DEBUG
|
|
|
|
#define PINCTRL_FUNCTION_MAIN 0
|
|
#define PINCTRL_FUNCTION_ALT1 1
|
|
#define PINCTRL_FUNCTION_ALT2 2
|
|
#define PINCTRL_FUNCTION_GPIO 3
|
|
|
|
#define PINCTRL_DRIVE_4mA 0
|
|
#define PINCTRL_DRIVE_8mA 1
|
|
#define PINCTRL_DRIVE_12mA 2
|
|
#define PINCTRL_DRIVE_16mA 3 /* not available on all pins */
|
|
|
|
#ifdef IMX233_PINCTRL_DEBUG
|
|
void imx233_pinctrl_acquire_pin(unsigned bank, unsigned pin, const char *name);
|
|
void imx233_pinctrl_acquire_pin_mask(unsigned bank, uint32_t mask, const char *name);
|
|
void imx233_pinctrl_release_pin(unsigned bank, unsigned pin, const char *name);
|
|
void imx233_pinctrl_release_pin_mask(unsigned bank, uint32_t mask, const char *name);
|
|
const char *imx233_pinctrl_get_pin_use(unsigned bank, unsigned pin);
|
|
#else
|
|
#define imx233_pinctrl_acquire_pin(...)
|
|
#define imx233_pinctrl_acquire_pin_mask(...)
|
|
#define imx233_pinctrl_release_pin(...)
|
|
#define imx233_pinctrl_release_pin_mask(...)
|
|
#define imx233_pinctrl_get_pin_use(...) NULL
|
|
#endif
|
|
|
|
typedef void (*pin_irq_cb_t)(int bank, int pin);
|
|
|
|
static inline void imx233_pinctrl_init(void)
|
|
{
|
|
HW_PINCTRL_CTRL_CLR = BM_OR2(PINCTRL_CTRL, CLKGATE, SFTRST);
|
|
}
|
|
|
|
static inline void imx233_set_pin_drive_strength(unsigned bank, unsigned pin, unsigned strength)
|
|
{
|
|
HW_PINCTRL_DRIVEn_CLR(4 * bank + pin / 8) = 3 << (4 * (pin % 8));
|
|
HW_PINCTRL_DRIVEn_SET(4 * bank + pin / 8) = strength << (4 * (pin % 8));
|
|
}
|
|
|
|
static inline void imx233_enable_gpio_output(unsigned bank, unsigned pin, bool enable)
|
|
{
|
|
if(enable)
|
|
HW_PINCTRL_DOEn_SET(bank) = 1 << pin;
|
|
else
|
|
HW_PINCTRL_DOEn_CLR(bank) = 1 << pin;
|
|
}
|
|
|
|
static inline void imx233_enable_gpio_output_mask(unsigned bank, uint32_t pin_mask, bool enable)
|
|
{
|
|
if(enable)
|
|
HW_PINCTRL_DOEn_SET(bank) = pin_mask;
|
|
else
|
|
HW_PINCTRL_DOEn_CLR(bank) = pin_mask;
|
|
}
|
|
|
|
static inline void imx233_set_gpio_output(unsigned bank, unsigned pin, bool value)
|
|
{
|
|
if(value)
|
|
HW_PINCTRL_DOUTn_SET(bank) = 1 << pin;
|
|
else
|
|
HW_PINCTRL_DOUTn_CLR(bank) = 1 << pin;
|
|
}
|
|
|
|
static inline void imx233_set_gpio_output_mask(unsigned bank, uint32_t pin_mask, bool value)
|
|
{
|
|
if(value)
|
|
HW_PINCTRL_DOUTn_SET(bank) = pin_mask;
|
|
else
|
|
HW_PINCTRL_DOUTn_CLR(bank) = pin_mask;
|
|
}
|
|
|
|
static inline uint32_t imx233_get_gpio_input_mask(unsigned bank, uint32_t pin_mask)
|
|
{
|
|
return HW_PINCTRL_DINn(bank) & pin_mask;
|
|
}
|
|
|
|
static inline void imx233_set_pin_function(unsigned bank, unsigned pin, unsigned function)
|
|
{
|
|
HW_PINCTRL_MUXSELn_CLR(2 * bank + pin / 16) = 3 << (2 * (pin % 16));
|
|
HW_PINCTRL_MUXSELn_SET(2 * bank + pin / 16) = function << (2 * (pin % 16));
|
|
}
|
|
|
|
static inline void imx233_enable_pin_pullup(unsigned bank, unsigned pin, bool enable)
|
|
{
|
|
if(enable)
|
|
HW_PINCTRL_PULLn_SET(bank) = 1 << pin;
|
|
else
|
|
HW_PINCTRL_PULLn_CLR(bank) = 1 << pin;
|
|
}
|
|
|
|
static inline void imx233_enable_pin_pullup_mask(unsigned bank, uint32_t pin_msk, bool enable)
|
|
{
|
|
if(enable)
|
|
HW_PINCTRL_PULLn_SET(bank) = pin_msk;
|
|
else
|
|
HW_PINCTRL_PULLn_CLR(bank) = pin_msk;
|
|
}
|
|
|
|
/** On irq, the pin irq interrupt is disable and then cb is called;
|
|
* the setup_pin_irq function needs to be called again to enable it again */
|
|
void imx233_setup_pin_irq(int bank, int pin, bool enable_int,
|
|
bool level, bool polarity, pin_irq_cb_t cb);
|
|
|
|
#endif /* __PINCTRL_IMX233_H__ */
|