Changeset 1b973dc in mainline for uspace/drv
- Timestamp:
- 2013-12-31T21:41:45Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1bb9833
- Parents:
- 4c14b88 (diff), 8a84484 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/drv
- Files:
-
- 5 edited
-
block/ahci/ahci.c (modified) (8 diffs)
-
bus/pci/pciintel/pci.c (modified) (7 diffs)
-
bus/usb/ehci/res.c (modified) (1 diff)
-
nic/e1k/e1k.c (modified) (1 diff)
-
nic/rtl8139/driver.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/ahci/ahci.c
r4c14b88 r1b973dc 37 37 #include <ddf/log.h> 38 38 #include <device/hw_res_parsed.h> 39 #include < device/pci.h>39 #include <pci_dev_iface.h> 40 40 #include <sysinfo.h> 41 41 #include <ipc/irc.h> … … 111 111 } 112 112 113 static int ahci_get_sata_device_name(ddf_fun_t *, size_t, char *);114 static int ahci_get_num_blocks(ddf_fun_t *, uint64_t *);115 static int ahci_get_block_size(ddf_fun_t *, size_t *);116 static int ahci_read_blocks(ddf_fun_t *, uint64_t, size_t, void *);117 static int ahci_write_blocks(ddf_fun_t *, uint64_t, size_t, void *);113 static int get_sata_device_name(ddf_fun_t *, size_t, char *); 114 static int get_num_blocks(ddf_fun_t *, uint64_t *); 115 static int get_block_size(ddf_fun_t *, size_t *); 116 static int read_blocks(ddf_fun_t *, uint64_t, size_t, void *); 117 static int write_blocks(ddf_fun_t *, uint64_t, size_t, void *); 118 118 119 119 static int ahci_identify_device(sata_dev_t *); … … 139 139 140 140 static ahci_iface_t ahci_interface = { 141 .get_sata_device_name = & ahci_get_sata_device_name,142 .get_num_blocks = & ahci_get_num_blocks,143 .get_block_size = & ahci_get_block_size,144 .read_blocks = & ahci_read_blocks,145 .write_blocks = & ahci_write_blocks141 .get_sata_device_name = &get_sata_device_name, 142 .get_num_blocks = &get_num_blocks, 143 .get_block_size = &get_block_size, 144 .read_blocks = &read_blocks, 145 .write_blocks = &write_blocks 146 146 }; 147 147 … … 180 180 * 181 181 */ 182 static int ahci_get_sata_device_name(ddf_fun_t *fun,182 static int get_sata_device_name(ddf_fun_t *fun, 183 183 size_t sata_dev_name_length, char *sata_dev_name) 184 184 { … … 196 196 * 197 197 */ 198 static int ahci_get_num_blocks(ddf_fun_t *fun, uint64_t *num_blocks)198 static int get_num_blocks(ddf_fun_t *fun, uint64_t *num_blocks) 199 199 { 200 200 sata_dev_t *sata = fun_sata_dev(fun); … … 211 211 * 212 212 */ 213 static int ahci_get_block_size(ddf_fun_t *fun, size_t *block_size)213 static int get_block_size(ddf_fun_t *fun, size_t *block_size) 214 214 { 215 215 sata_dev_t *sata = fun_sata_dev(fun); … … 228 228 * 229 229 */ 230 static int ahci_read_blocks(ddf_fun_t *fun, uint64_t blocknum,230 static int read_blocks(ddf_fun_t *fun, uint64_t blocknum, 231 231 size_t count, void *buf) 232 232 { … … 271 271 * 272 272 */ 273 static int ahci_write_blocks(ddf_fun_t *fun, uint64_t blocknum,273 static int write_blocks(ddf_fun_t *fun, uint64_t blocknum, 274 274 size_t count, void *buf) 275 275 { -
uspace/drv/bus/pci/pciintel/pci.c
r4c14b88 r1b973dc 153 153 154 154 155 static int pci_config_space_write_32(ddf_fun_t *fun, uint32_t address,155 static int config_space_write_32(ddf_fun_t *fun, uint32_t address, 156 156 uint32_t data) 157 157 { … … 162 162 } 163 163 164 static int pci_config_space_write_16(164 static int config_space_write_16( 165 165 ddf_fun_t *fun, uint32_t address, uint16_t data) 166 166 { … … 171 171 } 172 172 173 static int pci_config_space_write_8(173 static int config_space_write_8( 174 174 ddf_fun_t *fun, uint32_t address, uint8_t data) 175 175 { … … 180 180 } 181 181 182 static int pci_config_space_read_32(182 static int config_space_read_32( 183 183 ddf_fun_t *fun, uint32_t address, uint32_t *data) 184 184 { … … 189 189 } 190 190 191 static int pci_config_space_read_16(191 static int config_space_read_16( 192 192 ddf_fun_t *fun, uint32_t address, uint16_t *data) 193 193 { … … 198 198 } 199 199 200 static int pci_config_space_read_8(200 static int config_space_read_8( 201 201 ddf_fun_t *fun, uint32_t address, uint8_t *data) 202 202 { … … 217 217 218 218 static pci_dev_iface_t pci_dev_ops = { 219 .config_space_read_8 = & pci_config_space_read_8,220 .config_space_read_16 = & pci_config_space_read_16,221 .config_space_read_32 = & pci_config_space_read_32,222 .config_space_write_8 = & pci_config_space_write_8,223 .config_space_write_16 = & pci_config_space_write_16,224 .config_space_write_32 = & pci_config_space_write_32219 .config_space_read_8 = &config_space_read_8, 220 .config_space_read_16 = &config_space_read_16, 221 .config_space_read_32 = &config_space_read_32, 222 .config_space_write_8 = &config_space_write_8, 223 .config_space_write_16 = &config_space_write_16, 224 .config_space_write_32 = &config_space_write_32 225 225 }; 226 226 -
uspace/drv/bus/usb/ehci/res.c
r4c14b88 r1b973dc 43 43 #include <usb/debug.h> 44 44 #include <device/hw_res_parsed.h> 45 #include < device/pci.h>45 #include <pci_dev_iface.h> 46 46 47 47 #include "res.h" -
uspace/drv/nic/e1k/e1k.c
r4c14b88 r1b973dc 50 50 #include <ddf/interrupt.h> 51 51 #include <device/hw_res_parsed.h> 52 #include < device/pci.h>52 #include <pci_dev_iface.h> 53 53 #include <nic.h> 54 54 #include <ops/nic.h> -
uspace/drv/nic/rtl8139/driver.c
r4c14b88 r1b973dc 41 41 #include <io/log.h> 42 42 #include <nic.h> 43 #include < device/pci.h>43 #include <pci_dev_iface.h> 44 44 45 45 #include <ipc/irc.h> … … 190 190 return; 191 191 } 192 193 #include <device/pci.h>194 192 195 193 /** Set PmEn (Power management enable) bit value
Note:
See TracChangeset
for help on using the changeset viewer.
