/arch/arm/mach-mxs/devices/platform-mxsfb.c

https://github.com/AICP/kernel_asus_grouper · C · 47 lines · 36 code · 4 blank · 7 comment · 0 complexity · 7ee3e361fb2759211862d46de79e56bc MD5 · raw file

  1. /*
  2. * Copyright (C) 2011 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
  3. *
  4. * This program is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU General Public License version 2 as published by the
  6. * Free Software Foundation.
  7. */
  8. #include <linux/dma-mapping.h>
  9. #include <asm/sizes.h>
  10. #include <mach/mx23.h>
  11. #include <mach/mx28.h>
  12. #include <mach/devices-common.h>
  13. #include <mach/mxsfb.h>
  14. #ifdef CONFIG_SOC_IMX23
  15. struct platform_device *__init mx23_add_mxsfb(
  16. const struct mxsfb_platform_data *pdata)
  17. {
  18. struct resource res[] = {
  19. {
  20. .start = MX23_LCDIF_BASE_ADDR,
  21. .end = MX23_LCDIF_BASE_ADDR + SZ_8K - 1,
  22. .flags = IORESOURCE_MEM,
  23. },
  24. };
  25. return mxs_add_platform_device_dmamask("imx23-fb", -1,
  26. res, ARRAY_SIZE(res), pdata, sizeof(*pdata), DMA_BIT_MASK(32));
  27. }
  28. #endif /* ifdef CONFIG_SOC_IMX23 */
  29. #ifdef CONFIG_SOC_IMX28
  30. struct platform_device *__init mx28_add_mxsfb(
  31. const struct mxsfb_platform_data *pdata)
  32. {
  33. struct resource res[] = {
  34. {
  35. .start = MX28_LCDIF_BASE_ADDR,
  36. .end = MX28_LCDIF_BASE_ADDR + SZ_8K - 1,
  37. .flags = IORESOURCE_MEM,
  38. },
  39. };
  40. return mxs_add_platform_device_dmamask("imx28-fb", -1,
  41. res, ARRAY_SIZE(res), pdata, sizeof(*pdata), DMA_BIT_MASK(32));
  42. }
  43. #endif /* ifdef CONFIG_SOC_IMX28 */