lantiq.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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) 2010 John Crispin <john@phrozen.org>
  7. */
  8. #ifndef _LANTIQ_H__
  9. #define _LANTIQ_H__
  10. #include <linux/irq.h>
  11. #include <linux/device.h>
  12. #include <linux/clk.h>
  13. /* generic reg access functions */
  14. #define ltq_r32(reg) __raw_readl(reg)
  15. #define ltq_w32(val, reg) __raw_writel(val, reg)
  16. #define ltq_w32_mask(clear, set, reg) \
  17. ltq_w32((ltq_r32(reg) & ~(clear)) | (set), reg)
  18. #define ltq_r8(reg) __raw_readb(reg)
  19. #define ltq_w8(val, reg) __raw_writeb(val, reg)
  20. /* register access macros for EBU and CGU */
  21. #define ltq_ebu_w32(x, y) ltq_w32((x), ltq_ebu_membase + (y))
  22. #define ltq_ebu_r32(x) ltq_r32(ltq_ebu_membase + (x))
  23. #define ltq_ebu_w32_mask(x, y, z) \
  24. ltq_w32_mask(x, y, ltq_ebu_membase + (z))
  25. extern __iomem void *ltq_ebu_membase;
  26. /* spinlock all ebu i/o */
  27. extern spinlock_t ebu_lock;
  28. /* some irq helpers */
  29. extern void ltq_disable_irq(struct irq_data *data);
  30. extern void ltq_mask_and_ack_irq(struct irq_data *data);
  31. extern void ltq_enable_irq(struct irq_data *data);
  32. extern int ltq_eiu_get_irq(int exin);
  33. /* clock handling */
  34. extern int clk_activate(struct clk *clk);
  35. extern void clk_deactivate(struct clk *clk);
  36. extern struct clk *clk_get_cpu(void);
  37. extern struct clk *clk_get_fpi(void);
  38. extern struct clk *clk_get_io(void);
  39. extern struct clk *clk_get_ppe(void);
  40. /* find out what bootsource we have */
  41. extern unsigned char ltq_boot_select(void);
  42. /* find out what caused the last cpu reset */
  43. extern int ltq_reset_cause(void);
  44. /* find out the soc type */
  45. extern int ltq_soc_type(void);
  46. #define IOPORT_RESOURCE_START 0x10000000
  47. #define IOPORT_RESOURCE_END 0xffffffff
  48. #define IOMEM_RESOURCE_START 0x10000000
  49. #define IOMEM_RESOURCE_END 0xffffffff
  50. #endif