Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | /* -*- mode: c; c-basic-offset: 8 -*- */ /* * MCA device support functions * * These functions support the ongoing device access API. * * (C) 2002 James Bottomley <James.Bottomley@HansenPartnership.com> * **----------------------------------------------------------------------------- ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ** **----------------------------------------------------------------------------- */ #include <linux/module.h> #include <linux/device.h> #include <linux/mca.h> /** * mca_device_read_stored_pos - read POS register from stored data * @mca_dev: device to read from * @reg: register to read from * * Fetch a POS value that was stored at boot time by the kernel * when it scanned the MCA space. The register value is returned. * Missing or invalid registers report 0. */ unsigned char mca_device_read_stored_pos(struct mca_device *mca_dev, int reg) { if(reg < 0 || reg >= 8) return 0; return mca_dev->pos[reg]; } EXPORT_SYMBOL(mca_device_read_stored_pos); /** * mca_device_read_pos - read POS register from card * @mca_dev: device to read from * @reg: register to read from * * Fetch a POS value directly from the hardware to obtain the * current value. This is much slower than * mca_device_read_stored_pos and may not be invoked from * interrupt context. It handles the deep magic required for * onboard devices transparently. */ unsigned char mca_device_read_pos(struct mca_device *mca_dev, int reg) { struct mca_bus *mca_bus = to_mca_bus(mca_dev->dev.parent); return mca_bus->f.mca_read_pos(mca_dev, reg); return mca_dev->pos[reg]; } EXPORT_SYMBOL(mca_device_read_pos); /** * mca_device_write_pos - read POS register from card * @mca_dev: device to write pos register to * @reg: register to write to * @byte: byte to write to the POS registers * * Store a POS value directly to the hardware. You should not * normally need to use this function and should have a very good * knowledge of MCA bus before you do so. Doing this wrongly can * damage the hardware. * * This function may not be used from interrupt context. * */ void mca_device_write_pos(struct mca_device *mca_dev, int reg, unsigned char byte) { struct mca_bus *mca_bus = to_mca_bus(mca_dev->dev.parent); mca_bus->f.mca_write_pos(mca_dev, reg, byte); } EXPORT_SYMBOL(mca_device_write_pos); /** * mca_device_transform_irq - transform the ADF obtained IRQ * @mca_device: device whose irq needs transforming * @irq: input irq from ADF * * MCA Adapter Definition Files (ADF) contain irq, ioport, memory * etc. definitions. In systems with more than one bus, these need * to be transformed through bus mapping functions to get the real * system global quantities. * * This function transforms the interrupt number and returns the * transformed system global interrupt */ int mca_device_transform_irq(struct mca_device *mca_dev, int irq) { struct mca_bus *mca_bus = to_mca_bus(mca_dev->dev.parent); return mca_bus->f.mca_transform_irq(mca_dev, irq); } EXPORT_SYMBOL(mca_device_transform_irq); /** * mca_device_transform_ioport - transform the ADF obtained I/O port * @mca_device: device whose port needs transforming * @ioport: input I/O port from ADF * * MCA Adapter Definition Files (ADF) contain irq, ioport, memory * etc. definitions. In systems with more than one bus, these need * to be transformed through bus mapping functions to get the real * system global quantities. * * This function transforms the I/O port number and returns the * transformed system global port number. * * This transformation can be assumed to be linear for port ranges. */ int mca_device_transform_ioport(struct mca_device *mca_dev, int port) { struct mca_bus *mca_bus = to_mca_bus(mca_dev->dev.parent); return mca_bus->f.mca_transform_ioport(mca_dev, port); } EXPORT_SYMBOL(mca_device_transform_ioport); /** * mca_device_transform_memory - transform the ADF obtained memory * @mca_device: device whose memory region needs transforming * @mem: memory region start from ADF * * MCA Adapter Definition Files (ADF) contain irq, ioport, memory * etc. definitions. In systems with more than one bus, these need * to be transformed through bus mapping functions to get the real * system global quantities. * * This function transforms the memory region start and returns the * transformed system global memory region (physical). * * This transformation can be assumed to be linear for region ranges. */ void *mca_device_transform_memory(struct mca_device *mca_dev, void *mem) { struct mca_bus *mca_bus = to_mca_bus(mca_dev->dev.parent); return mca_bus->f.mca_transform_memory(mca_dev, mem); } EXPORT_SYMBOL(mca_device_transform_memory); /** * mca_device_claimed - check if claimed by driver * @mca_dev: device to check * * Returns 1 if the slot has been claimed by a driver */ int mca_device_claimed(struct mca_device *mca_dev) { return mca_dev->driver_loaded; } EXPORT_SYMBOL(mca_device_claimed); /** * mca_device_set_claim - set the claim value of the driver * @mca_dev: device to set value for * @val: claim value to set (1 claimed, 0 unclaimed) */ void mca_device_set_claim(struct mca_device *mca_dev, int val) { mca_dev->driver_loaded = val; } EXPORT_SYMBOL(mca_device_set_claim); /** * mca_device_status - get the status of the device * @mca_device: device to get * * returns an enumeration of the device status: * * MCA_ADAPTER_NORMAL adapter is OK. * MCA_ADAPTER_NONE no adapter at device (should never happen). * MCA_ADAPTER_DISABLED adapter is disabled. * MCA_ADAPTER_ERROR adapter cannot be initialised. */ enum MCA_AdapterStatus mca_device_status(struct mca_device *mca_dev) { return mca_dev->status; } EXPORT_SYMBOL(mca_device_status); /** * mca_device_set_name - set the name of the device * @mca_device: device to set the name of * @name: name to set */ void mca_device_set_name(struct mca_device *mca_dev, const char *name) { if(!mca_dev) return; strlcpy(mca_dev->name, name, sizeof(mca_dev->name)); } EXPORT_SYMBOL(mca_device_set_name); |