ebu.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. * EBU - the external bus unit attaches PCI, NOR and NAND
  7. *
  8. * Copyright (C) 2010 John Crispin <blogic@openwrt.org>
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/module.h>
  12. #include <linux/ioport.h>
  13. #include <lantiq_soc.h>
  14. /* all access to the ebu must be locked */
  15. DEFINE_SPINLOCK(ebu_lock);
  16. EXPORT_SYMBOL_GPL(ebu_lock);
  17. static struct resource ltq_ebu_resource = {
  18. .name = "ebu",
  19. .start = LTQ_EBU_BASE_ADDR,
  20. .end = LTQ_EBU_BASE_ADDR + LTQ_EBU_SIZE - 1,
  21. .flags = IORESOURCE_MEM,
  22. };
  23. /* remapped base addr of the clock unit and external bus unit */
  24. void __iomem *ltq_ebu_membase;
  25. static int __init lantiq_ebu_init(void)
  26. {
  27. /* insert and request the memory region */
  28. if (insert_resource(&iomem_resource, &ltq_ebu_resource) < 0)
  29. panic("Failed to insert ebu memory");
  30. if (request_mem_region(ltq_ebu_resource.start,
  31. resource_size(&ltq_ebu_resource), "ebu") < 0)
  32. panic("Failed to request ebu memory");
  33. /* remap ebu register range */
  34. ltq_ebu_membase = ioremap_nocache(ltq_ebu_resource.start,
  35. resource_size(&ltq_ebu_resource));
  36. if (!ltq_ebu_membase)
  37. panic("Failed to remap ebu memory");
  38. /* make sure to unprotect the memory region where flash is located */
  39. ltq_ebu_w32(ltq_ebu_r32(LTQ_EBU_BUSCON0) & ~EBU_WRDIS, LTQ_EBU_BUSCON0);
  40. return 0;
  41. }
  42. postcore_initcall(lantiq_ebu_init);