Changeset 301032a in mainline for uspace/lib/drv
- Timestamp:
- 2013-08-16T14:08:03Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 537620a8
- Parents:
- c762ad5
- Location:
- uspace/lib/drv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_hw_res.c
rc762ad5 r301032a 110 110 return; 111 111 } 112 const unsigned channel = DEV_IPC_GET_ARG1(*call); 112 const unsigned channel = DEV_IPC_GET_ARG1(*call) & 0xffff; 113 const uint8_t mode = DEV_IPC_GET_ARG1(*call) >> 16; 113 114 const uint32_t address = DEV_IPC_GET_ARG2(*call); 114 const uint16_t size = DEV_IPC_GET_ARG3(*call) & 0xffff; 115 const uint8_t mode = DEV_IPC_GET_ARG3(*call) >> 16; 115 const uint32_t size = DEV_IPC_GET_ARG3(*call); 116 116 117 117 const int ret = hw_res_ops->dma_channel_setup( -
uspace/lib/drv/include/ops/hw_res.h
rc762ad5 r301032a 44 44 hw_resource_list_t *(*get_resource_list)(ddf_fun_t *); 45 45 bool (*enable_interrupt)(ddf_fun_t *); 46 int (*dma_channel_setup)(ddf_fun_t *, unsigned, uint32_t, uint 16_t, uint8_t);46 int (*dma_channel_setup)(ddf_fun_t *, unsigned, uint32_t, uint32_t, uint8_t); 47 47 int (*dma_channel_remain)(ddf_fun_t *, unsigned, size_t *); 48 48 } hw_res_ops_t;
Note:
See TracChangeset
for help on using the changeset viewer.