1 /* 2 * linux/include/amba/bus.h 3 * 4 * This device type deals with ARM PrimeCells and anything else that 5 * presents a proper CID (0xB105F00D) at the end of the I/O register 6 * region or that is derived from a PrimeCell. 7 * 8 * Copyright (C) 2003 Deep Blue Solutions Ltd, All Rights Reserved. 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License version 2 as 12 * published by the Free Software Foundation. 13 */ 14 #ifndef ASMARM_AMBA_H 15 #define ASMARM_AMBA_H 16 17 #include <linux/clk.h> 18 #include <linux/device.h> 19 #include <linux/mod_devicetable.h> 20 #include <linux/err.h> 21 #include <linux/resource.h> 22 #include <linux/regulator/consumer.h> 23 24 #define AMBA_NR_IRQS 9 25 #define AMBA_CID 0xb105f00d 26 #define CORESIGHT_CID 0xb105900d 27 28 /* 29 * CoreSight Architecture specification updates the ID specification 30 * for components on the AMBA bus. (ARM IHI 0029E) 31 * 32 * Bits 15:12 of the CID are the device class. 33 * 34 * Class 0xF remains for PrimeCell and legacy components. (AMBA_CID above) 35 * Class 0x9 defines the component as CoreSight (CORESIGHT_CID above) 36 * Class 0x0, 0x1, 0xB, 0xE define components that do not have driver support 37 * at present. 38 * Class 0x2-0x8,0xA and 0xD-0xD are presently reserved. 39 * 40 * Remaining CID bits stay as 0xb105-00d 41 */ 42 43 /** 44 * Class 0x9 components use additional values to form a Unique Component 45 * Identifier (UCI), where peripheral ID values are identical for different 46 * components. Passed to the amba bus code from the component driver via 47 * the amba_id->data pointer. 48 * @devarch : coresight devarch register value 49 * @devarch_mask: mask bits used for matching. 0 indicates UCI not used. 50 * @devtype : coresight device type value 51 * @data : additional driver data. As we have usurped the original 52 * pointer some devices may still need additional data 53 */ 54 struct amba_cs_uci_id { 55 unsigned int devarch; 56 unsigned int devarch_mask; 57 unsigned int devtype; 58 void *data; 59 }; 60 61 struct clk; 62 63 struct amba_device { 64 struct device dev; 65 struct resource res; 66 struct clk *pclk; 67 unsigned int periphid; 68 unsigned int irq[AMBA_NR_IRQS]; 69 char *driver_override; 70 }; 71 72 struct amba_driver { 73 struct device_driver drv; 74 int (*probe)(struct amba_device *, const struct amba_id *); 75 int (*remove)(struct amba_device *); 76 void (*shutdown)(struct amba_device *); 77 const struct amba_id *id_table; 78 }; 79 80 /* 81 * Constants for the designer field of the Peripheral ID register. When bit 7 82 * is set to '1', bits [6:0] should be the JEP106 manufacturer identity code. 83 */ 84 enum amba_vendor { 85 AMBA_VENDOR_ARM = 0x41, 86 AMBA_VENDOR_ST = 0x80, 87 AMBA_VENDOR_QCOM = 0x51, 88 AMBA_VENDOR_LSI = 0xb6, 89 AMBA_VENDOR_LINUX = 0xfe, /* This value is not official */ 90 }; 91 92 /* This is used to generate pseudo-ID for AMBA device */ 93 #define AMBA_LINUX_ID(conf, rev, part) \ 94 (((conf) & 0xff) << 24 | ((rev) & 0xf) << 20 | \ 95 AMBA_VENDOR_LINUX << 12 | ((part) & 0xfff)) 96 97 extern struct bus_type amba_bustype; 98 99 #define to_amba_device(d) container_of(d, struct amba_device, dev) 100 101 #define amba_get_drvdata(d) dev_get_drvdata(&d->dev) 102 #define amba_set_drvdata(d,p) dev_set_drvdata(&d->dev, p) 103 104 int amba_driver_register(struct amba_driver *); 105 void amba_driver_unregister(struct amba_driver *); 106 struct amba_device *amba_device_alloc(const char *, resource_size_t, size_t); 107 void amba_device_put(struct amba_device *); 108 int amba_device_add(struct amba_device *, struct resource *); 109 int amba_device_register(struct amba_device *, struct resource *); 110 struct amba_device *amba_apb_device_add(struct device *parent, const char *name, 111 resource_size_t base, size_t size, 112 int irq1, int irq2, void *pdata, 113 unsigned int periphid); 114 struct amba_device *amba_ahb_device_add(struct device *parent, const char *name, 115 resource_size_t base, size_t size, 116 int irq1, int irq2, void *pdata, 117 unsigned int periphid); 118 struct amba_device * 119 amba_apb_device_add_res(struct device *parent, const char *name, 120 resource_size_t base, size_t size, int irq1, 121 int irq2, void *pdata, unsigned int periphid, 122 struct resource *resbase); 123 struct amba_device * 124 amba_ahb_device_add_res(struct device *parent, const char *name, 125 resource_size_t base, size_t size, int irq1, 126 int irq2, void *pdata, unsigned int periphid, 127 struct resource *resbase); 128 void amba_device_unregister(struct amba_device *); 129 struct amba_device *amba_find_device(const char *, struct device *, unsigned int, unsigned int); 130 int amba_request_regions(struct amba_device *, const char *); 131 void amba_release_regions(struct amba_device *); 132 133 static inline int amba_pclk_enable(struct amba_device *dev) 134 { 135 return clk_enable(dev->pclk); 136 } 137 138 static inline void amba_pclk_disable(struct amba_device *dev) 139 { 140 clk_disable(dev->pclk); 141 } 142 143 static inline int amba_pclk_prepare(struct amba_device *dev) 144 { 145 return clk_prepare(dev->pclk); 146 } 147 148 static inline void amba_pclk_unprepare(struct amba_device *dev) 149 { 150 clk_unprepare(dev->pclk); 151 } 152 153 /* Some drivers don't use the struct amba_device */ 154 #define AMBA_CONFIG_BITS(a) (((a) >> 24) & 0xff) 155 #define AMBA_REV_BITS(a) (((a) >> 20) & 0x0f) 156 #define AMBA_MANF_BITS(a) (((a) >> 12) & 0xff) 157 #define AMBA_PART_BITS(a) ((a) & 0xfff) 158 159 #define amba_config(d) AMBA_CONFIG_BITS((d)->periphid) 160 #define amba_rev(d) AMBA_REV_BITS((d)->periphid) 161 #define amba_manf(d) AMBA_MANF_BITS((d)->periphid) 162 #define amba_part(d) AMBA_PART_BITS((d)->periphid) 163 164 #define __AMBA_DEV(busid, data, mask) \ 165 { \ 166 .coherent_dma_mask = mask, \ 167 .init_name = busid, \ 168 .platform_data = data, \ 169 } 170 171 /* 172 * APB devices do not themselves have the ability to address memory, 173 * so DMA masks should be zero (much like USB peripheral devices.) 174 * The DMA controller DMA masks should be used instead (much like 175 * USB host controllers in conventional PCs.) 176 */ 177 #define AMBA_APB_DEVICE(name, busid, id, base, irqs, data) \ 178 struct amba_device name##_device = { \ 179 .dev = __AMBA_DEV(busid, data, 0), \ 180 .res = DEFINE_RES_MEM(base, SZ_4K), \ 181 .irq = irqs, \ 182 .periphid = id, \ 183 } 184 185 /* 186 * AHB devices are DMA capable, so set their DMA masks 187 */ 188 #define AMBA_AHB_DEVICE(name, busid, id, base, irqs, data) \ 189 struct amba_device name##_device = { \ 190 .dev = __AMBA_DEV(busid, data, ~0ULL), \ 191 .res = DEFINE_RES_MEM(base, SZ_4K), \ 192 .irq = irqs, \ 193 .periphid = id, \ 194 } 195 196 /* 197 * module_amba_driver() - Helper macro for drivers that don't do anything 198 * special in module init/exit. This eliminates a lot of boilerplate. Each 199 * module may only use this macro once, and calling it replaces module_init() 200 * and module_exit() 201 */ 202 #define module_amba_driver(__amba_drv) \ 203 module_driver(__amba_drv, amba_driver_register, amba_driver_unregister) 204 205 /* 206 * builtin_amba_driver() - Helper macro for drivers that don't do anything 207 * special in driver initcall. This eliminates a lot of boilerplate. Each 208 * driver may only use this macro once, and calling it replaces the instance 209 * device_initcall(). 210 */ 211 #define builtin_amba_driver(__amba_drv) \ 212 builtin_driver(__amba_drv, amba_driver_register) 213 214 #endif 215