vmmc.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it
  3. * under the terms of the GNU General Public License version 2 as published
  4. * by the Free Software Foundation.
  5. *
  6. * Copyright (C) 2012 John Crispin <john@phrozen.org>
  7. */
  8. #include <linux/export.h>
  9. #include <linux/of_platform.h>
  10. #include <linux/of_gpio.h>
  11. #include <linux/dma-mapping.h>
  12. #include <lantiq_soc.h>
  13. static unsigned int *cp1_base;
  14. unsigned int *ltq_get_cp1_base(void)
  15. {
  16. if (!cp1_base)
  17. panic("no cp1 base was set\n");
  18. return cp1_base;
  19. }
  20. EXPORT_SYMBOL(ltq_get_cp1_base);
  21. static int vmmc_probe(struct platform_device *pdev)
  22. {
  23. #define CP1_SIZE (1 << 20)
  24. int gpio_count;
  25. dma_addr_t dma;
  26. cp1_base =
  27. (void *) CPHYSADDR(dma_alloc_coherent(NULL, CP1_SIZE,
  28. &dma, GFP_ATOMIC));
  29. gpio_count = of_gpio_count(pdev->dev.of_node);
  30. while (gpio_count > 0) {
  31. enum of_gpio_flags flags;
  32. int gpio = of_get_gpio_flags(pdev->dev.of_node,
  33. --gpio_count, &flags);
  34. if (gpio_request(gpio, "vmmc-relay"))
  35. continue;
  36. dev_info(&pdev->dev, "requested GPIO %d\n", gpio);
  37. gpio_direction_output(gpio,
  38. (flags & OF_GPIO_ACTIVE_LOW) ? (0) : (1));
  39. }
  40. dev_info(&pdev->dev, "reserved %dMB at 0x%p", CP1_SIZE >> 20, cp1_base);
  41. return 0;
  42. }
  43. static const struct of_device_id vmmc_match[] = {
  44. { .compatible = "lantiq,vmmc-xway" },
  45. {},
  46. };
  47. static struct platform_driver vmmc_driver = {
  48. .probe = vmmc_probe,
  49. .driver = {
  50. .name = "lantiq,vmmc",
  51. .of_match_table = vmmc_match,
  52. },
  53. };
  54. builtin_platform_driver(vmmc_driver);