Add initial pinctrl support
This is a massively stripped down pinctrl support. The upper API
consists of only of:

int pinctrl_select_state(struct device_d *dev, const char *state);

This is used to setup the pinmux for a device to a certain state.
This function normally does not need to be called manually. The
device core will setup the default state before probing a device.

The pinctrl core has the job of handling the devicetree. It parses
the pinctrl phandles for a device from devicetree, finds the correct
pinctrl device and calls its set_state callback with the pinctrl
setup device node.

The simplicity of this pinctrl framework comes from the fact that
we:

- Limit usage to devicetree only for now. For non devicetree use the
  old legacy SoC specific APIs still can be used.
- Do not parse the devicetree into internal data structures which
  are used by the drivers later. This adds the overhead that we
  may parse the devicetree multiple times for more dynamic setups,
  but on the other hand we do not need to parse devices from the
  devicetree we don't use in barebox
- Do not detect resource conflicts. Since the framework mainly is
  a devicetree parser this would be hard to implement. It should
  be easy for board maintainers to avoid resource conflicts though.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
1 parent cd23160 commit 7f63c0a246751e5424e7916fd1e20fe479a1dcfa
@Sascha Hauer Sascha Hauer authored on 21 Apr 2013
Showing 7 changed files
View
drivers/Kconfig
View
drivers/Makefile
View
drivers/base/driver.c
View
drivers/pinctrl/Kconfig 0 → 100644
View
drivers/pinctrl/Makefile 0 → 100644
View
drivers/pinctrl/pinctrl.c 0 → 100644
View
include/pinctrl.h 0 → 100644