cpld-gpio-bus.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * cpld-gpio-bus.c: provides support for the CPLD GPIO bus found on some LaCie
  3. * boards (as the 2Big/5Big Network v2 and the 2Big NAS). This parallel GPIO
  4. * bus exposes two registers (address and data). Each of this register is made
  5. * up of several dedicated GPIOs. An extra GPIO is used to notify the CPLD that
  6. * the registers have been updated.
  7. *
  8. * Mostly this bus is used to configure the LEDs on LaCie boards.
  9. *
  10. * Copyright (C) 2013 Simon Guinot <simon.guinot@sequanux.org>
  11. *
  12. * SPDX-License-Identifier: GPL-2.0+
  13. */
  14. #include <asm/arch/gpio.h>
  15. #include "cpld-gpio-bus.h"
  16. static void cpld_gpio_bus_set_addr(struct cpld_gpio_bus *bus, unsigned addr)
  17. {
  18. int pin;
  19. for (pin = 0; pin < bus->num_addr; pin++)
  20. kw_gpio_set_value(bus->addr[pin], (addr >> pin) & 1);
  21. }
  22. static void cpld_gpio_bus_set_data(struct cpld_gpio_bus *bus, unsigned data)
  23. {
  24. int pin;
  25. for (pin = 0; pin < bus->num_data; pin++)
  26. kw_gpio_set_value(bus->data[pin], (data >> pin) & 1);
  27. }
  28. static void cpld_gpio_bus_enable_select(struct cpld_gpio_bus *bus)
  29. {
  30. /* The transfer is enabled on the raising edge. */
  31. kw_gpio_set_value(bus->enable, 0);
  32. kw_gpio_set_value(bus->enable, 1);
  33. }
  34. void cpld_gpio_bus_write(struct cpld_gpio_bus *bus,
  35. unsigned addr, unsigned value)
  36. {
  37. cpld_gpio_bus_set_addr(bus, addr);
  38. cpld_gpio_bus_set_data(bus, value);
  39. cpld_gpio_bus_enable_select(bus);
  40. }