lp503x.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (c) 2020 Seagate Technology LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_LED_LP503X_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_LED_LP503X_H_
  8. #define LP503X_MAX_LEDS 12
  9. #define LP503X_COLORS_PER_LED 3
  10. /*
  11. * LED channels mapping.
  12. */
  13. #define LP503X_NUM_CHANNELS 52
  14. /* Bank channels. */
  15. #define LP503X_BANK_CHAN_BASE 0
  16. #define LP503X_BANK_BRIGHT_CHAN LP503X_BANK_CHAN_BASE
  17. #define LP503X_BANK_COL1_CHAN(led) (LP503X_BANK_CHAN_BASE + 1)
  18. #define LP503X_BANK_COL2_CHAN(led) (LP503X_BANK_CHAN_BASE + 2)
  19. #define LP503X_BANK_COL3_CHAN(led) (LP503X_BANK_CHAN_BASE + 3)
  20. /* LED brightness channels. */
  21. #define LP503X_LED_BRIGHT_CHAN_BASE 4
  22. #define LP503X_LED_BRIGHT_CHAN(led) (LP503X_LED_BRIGHT_CHAN_BASE + led)
  23. /* LED color channels. */
  24. #define LP503X_LED_COL_CHAN_BASE 16
  25. #define LP503X_LED_COL1_CHAN(led) (LP503X_LED_COL_CHAN_BASE + \
  26. led * LP503X_COLORS_PER_LED)
  27. #define LP503X_LED_COL2_CHAN(led) (LP503X_LED_COL_CHAN_BASE + \
  28. led * LP503X_COLORS_PER_LED + 1)
  29. #define LP503X_LED_COL3_CHAN(led) (LP503X_LED_COL_CHAN_BASE + \
  30. led * LP503X_COLORS_PER_LED + 2)
  31. #endif /* ZEPHYR_INCLUDE_DRIVERS_LED_LP503X_H_ */