pdata.h 849 B

1234567891011121314151617181920212223242526272829303132
  1. /* Copyright (C) 2012 Dialog Semiconductor Ltd.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. */
  9. #ifndef __DA9055_PDATA_H
  10. #define __DA9055_PDATA_H
  11. #define DA9055_MAX_REGULATORS 8
  12. struct da9055;
  13. enum gpio_select {
  14. NO_GPIO = 0,
  15. GPIO_1,
  16. GPIO_2
  17. };
  18. struct da9055_pdata {
  19. int (*init) (struct da9055 *da9055);
  20. int irq_base;
  21. int gpio_base;
  22. struct regulator_init_data *regulators[DA9055_MAX_REGULATORS];
  23. bool reset_enable; /* Enable RTC in RESET Mode */
  24. enum gpio_select *gpio_rsel; /* Select regulator set thru GPIO 1/2 */
  25. enum gpio_select *gpio_ren; /* Enable regulator thru GPIO 1/2 */
  26. };
  27. #endif /* __DA9055_PDATA_H */