platform-imx-fb.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (C) 2010 Pengutronix
  3. * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it under
  6. * the terms of the GNU General Public License version 2 as published by the
  7. * Free Software Foundation.
  8. */
  9. #include <linux/dma-mapping.h>
  10. #include "../hardware.h"
  11. #include "devices-common.h"
  12. #define imx_imx_fb_data_entry_single(soc, _devid, _size) \
  13. { \
  14. .devid = _devid, \
  15. .iobase = soc ## _LCDC_BASE_ADDR, \
  16. .iosize = _size, \
  17. .irq = soc ## _INT_LCDC, \
  18. }
  19. #ifdef CONFIG_SOC_IMX21
  20. const struct imx_imx_fb_data imx21_imx_fb_data __initconst =
  21. imx_imx_fb_data_entry_single(MX21, "imx21-fb", SZ_4K);
  22. #endif /* ifdef CONFIG_SOC_IMX21 */
  23. #ifdef CONFIG_SOC_IMX27
  24. const struct imx_imx_fb_data imx27_imx_fb_data __initconst =
  25. imx_imx_fb_data_entry_single(MX27, "imx21-fb", SZ_4K);
  26. #endif /* ifdef CONFIG_SOC_IMX27 */
  27. struct platform_device *__init imx_add_imx_fb(
  28. const struct imx_imx_fb_data *data,
  29. const struct imx_fb_platform_data *pdata)
  30. {
  31. struct resource res[] = {
  32. {
  33. .start = data->iobase,
  34. .end = data->iobase + data->iosize - 1,
  35. .flags = IORESOURCE_MEM,
  36. }, {
  37. .start = data->irq,
  38. .end = data->irq,
  39. .flags = IORESOURCE_IRQ,
  40. },
  41. };
  42. return imx_add_platform_device_dmamask(data->devid, 0,
  43. res, ARRAY_SIZE(res),
  44. pdata, sizeof(*pdata), DMA_BIT_MASK(32));
  45. }