pinctrl-coh901.h 694 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2007-2012 ST-Ericsson AB
  3. * License terms: GNU General Public License (GPL) version 2
  4. * GPIO block resgister definitions and inline macros for
  5. * U300 GPIO COH 901 335 or COH 901 571/3
  6. * Author: Linus Walleij <linus.walleij@stericsson.com>
  7. */
  8. #ifndef __MACH_U300_GPIO_U300_H
  9. #define __MACH_U300_GPIO_U300_H
  10. /**
  11. * struct u300_gpio_platform - U300 GPIO platform data
  12. * @ports: number of GPIO block ports
  13. * @gpio_base: first GPIO number for this block (use a free range)
  14. * @pinctrl_device: pin control device to spawn as child
  15. */
  16. struct u300_gpio_platform {
  17. u8 ports;
  18. int gpio_base;
  19. struct platform_device *pinctrl_device;
  20. };
  21. #endif /* __MACH_U300_GPIO_U300_H */