lantiq.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. *
  4. * Copyright (C) 2010 John Crispin <[email protected]>
  5. */
  6. #ifndef _LANTIQ_H__
  7. #define _LANTIQ_H__
  8. #include <linux/irq.h>
  9. #include <linux/device.h>
  10. #include <linux/clk.h>
  11. /* generic reg access functions */
  12. #define ltq_r32(reg) __raw_readl(reg)
  13. #define ltq_w32(val, reg) __raw_writel(val, reg)
  14. #define ltq_w32_mask(clear, set, reg) \
  15. ltq_w32((ltq_r32(reg) & ~(clear)) | (set), reg)
  16. #define ltq_r8(reg) __raw_readb(reg)
  17. #define ltq_w8(val, reg) __raw_writeb(val, reg)
  18. /* register access macros for EBU and CGU */
  19. #define ltq_ebu_w32(x, y) ltq_w32((x), ltq_ebu_membase + (y))
  20. #define ltq_ebu_r32(x) ltq_r32(ltq_ebu_membase + (x))
  21. #define ltq_ebu_w32_mask(x, y, z) \
  22. ltq_w32_mask(x, y, ltq_ebu_membase + (z))
  23. extern __iomem void *ltq_ebu_membase;
  24. /* spinlock all ebu i/o */
  25. extern spinlock_t ebu_lock;
  26. /* some irq helpers */
  27. extern void ltq_disable_irq(struct irq_data *data);
  28. extern void ltq_mask_and_ack_irq(struct irq_data *data);
  29. extern void ltq_enable_irq(struct irq_data *data);
  30. extern int ltq_eiu_get_irq(int exin);
  31. /* clock handling */
  32. extern int clk_activate(struct clk *clk);
  33. extern void clk_deactivate(struct clk *clk);
  34. extern struct clk *clk_get_cpu(void);
  35. extern struct clk *clk_get_fpi(void);
  36. extern struct clk *clk_get_io(void);
  37. extern struct clk *clk_get_ppe(void);
  38. /* find out what bootsource we have */
  39. extern unsigned char ltq_boot_select(void);
  40. /* find out the soc type */
  41. extern int ltq_soc_type(void);
  42. #define IOPORT_RESOURCE_START 0x10000000
  43. #define IOPORT_RESOURCE_END 0xffffffff
  44. #define IOMEM_RESOURCE_START 0x10000000
  45. #define IOMEM_RESOURCE_END 0xffffffff
  46. #endif