de_device.c 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <soc.h>
  7. #ifdef CONFIG_SPI_FLASH_ACTS
  8. #include <flash/spi_flash.h>
  9. #endif
  10. #include "de_device.h"
  11. void nor_xip_set_locked(bool locked)
  12. {
  13. #ifdef CONFIG_SPI_FLASH_ACTS
  14. if (locked) {
  15. spi0_nor_xip_lock();
  16. } else {
  17. spi0_nor_xip_unlock();
  18. }
  19. #endif
  20. }
  21. DEVICE_DECLARE(de);
  22. static int de_drv_init(const struct device *dev)
  23. {
  24. int res = de_init(dev);
  25. if (res == 0) {
  26. IRQ_CONNECT(IRQ_ID_DE, 0, de_isr, DEVICE_GET(de), 0);
  27. irq_enable(IRQ_ID_DE);
  28. }
  29. clk_set_rate(CLOCK_ID_DE, KHZ(CONFIG_DISPLAY_ENGINE_CLOCK_KHZ));
  30. return res;
  31. }
  32. #if IS_ENABLED(CONFIG_DISPLAY_ENGINE_DEV)
  33. DEVICE_DEFINE(de, CONFIG_DISPLAY_ENGINE_DEV_NAME, &de_drv_init,
  34. de_pm_control, &de_drv_data, NULL, POST_KERNEL,
  35. CONFIG_KERNEL_INIT_PRIORITY_DEVICE, &de_drv_api);
  36. #endif