Changeset a46e56b in mainline for uspace/lib/drv/generic/remote_hw_res.c
- Timestamp:
- 2018-03-22T06:49:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77f0a1d
- Parents:
- 3e242d2
- git-author:
- Jakub Jermar <jakub@…> (2018-03-21 23:29:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-03-22 06:49:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_hw_res.c
r3e242d2 ra46e56b 69 69 70 70 static void remote_hw_res_enable_interrupt(ddf_fun_t *fun, void *ops, 71 cap_call_handle_t c allid, ipc_call_t *call)71 cap_call_handle_t chandle, ipc_call_t *call) 72 72 { 73 73 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; 74 74 75 75 if (hw_res_ops->enable_interrupt == NULL) { 76 async_answer_0(c allid, ENOTSUP);76 async_answer_0(chandle, ENOTSUP); 77 77 return; 78 78 } … … 80 80 const int irq = DEV_IPC_GET_ARG1(*call); 81 81 const errno_t ret = hw_res_ops->enable_interrupt(fun, irq); 82 async_answer_0(c allid, ret);82 async_answer_0(chandle, ret); 83 83 } 84 84 85 85 static void remote_hw_res_disable_interrupt(ddf_fun_t *fun, void *ops, 86 cap_call_handle_t c allid, ipc_call_t *call)86 cap_call_handle_t chandle, ipc_call_t *call) 87 87 { 88 88 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; 89 89 90 90 if (hw_res_ops->disable_interrupt == NULL) { 91 async_answer_0(c allid, ENOTSUP);91 async_answer_0(chandle, ENOTSUP); 92 92 return; 93 93 } … … 95 95 const int irq = DEV_IPC_GET_ARG1(*call); 96 96 const errno_t ret = hw_res_ops->disable_interrupt(fun, irq); 97 async_answer_0(c allid, ret);97 async_answer_0(chandle, ret); 98 98 } 99 99 100 100 static void remote_hw_res_clear_interrupt(ddf_fun_t *fun, void *ops, 101 cap_call_handle_t c allid, ipc_call_t *call)101 cap_call_handle_t chandle, ipc_call_t *call) 102 102 { 103 103 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; 104 104 105 105 if (hw_res_ops->clear_interrupt == NULL) { 106 async_answer_0(c allid, ENOTSUP);106 async_answer_0(chandle, ENOTSUP); 107 107 return; 108 108 } … … 110 110 const int irq = DEV_IPC_GET_ARG1(*call); 111 111 const errno_t ret = hw_res_ops->enable_interrupt(fun, irq); 112 async_answer_0(c allid, ret);112 async_answer_0(chandle, ret); 113 113 } 114 114 115 115 static void remote_hw_res_get_resource_list(ddf_fun_t *fun, void *ops, 116 cap_call_handle_t c allid, ipc_call_t *call)116 cap_call_handle_t chandle, ipc_call_t *call) 117 117 { 118 118 hw_res_ops_t *hw_res_ops = (hw_res_ops_t *) ops; 119 119 120 120 if (hw_res_ops->get_resource_list == NULL) { 121 async_answer_0(c allid, ENOTSUP);121 async_answer_0(chandle, ENOTSUP); 122 122 return; 123 123 } … … 125 125 hw_resource_list_t *hw_resources = hw_res_ops->get_resource_list(fun); 126 126 if (hw_resources == NULL){ 127 async_answer_0(c allid, ENOENT);127 async_answer_0(chandle, ENOENT); 128 128 return; 129 129 } 130 130 131 async_answer_1(c allid, EOK, hw_resources->count);131 async_answer_1(chandle, EOK, hw_resources->count); 132 132 133 133 size_t len; 134 if (!async_data_read_receive(&c allid, &len)) {134 if (!async_data_read_receive(&chandle, &len)) { 135 135 /* Protocol error - the recipient is not accepting data */ 136 136 return; 137 137 } 138 async_data_read_finalize(c allid, hw_resources->resources, len);138 async_data_read_finalize(chandle, hw_resources->resources, len); 139 139 } 140 140 141 141 static void remote_hw_res_dma_channel_setup(ddf_fun_t *fun, void *ops, 142 cap_call_handle_t c allid, ipc_call_t *call)142 cap_call_handle_t chandle, ipc_call_t *call) 143 143 { 144 144 hw_res_ops_t *hw_res_ops = ops; 145 145 146 146 if (hw_res_ops->dma_channel_setup == NULL) { 147 async_answer_0(c allid, ENOTSUP);147 async_answer_0(chandle, ENOTSUP); 148 148 return; 149 149 } … … 155 155 const errno_t ret = hw_res_ops->dma_channel_setup( 156 156 fun, channel, address, size, mode); 157 async_answer_0(c allid, ret);157 async_answer_0(chandle, ret); 158 158 } 159 159 160 160 static void remote_hw_res_dma_channel_remain(ddf_fun_t *fun, void *ops, 161 cap_call_handle_t c allid, ipc_call_t *call)161 cap_call_handle_t chandle, ipc_call_t *call) 162 162 { 163 163 hw_res_ops_t *hw_res_ops = ops; 164 164 165 165 if (hw_res_ops->dma_channel_setup == NULL) { 166 async_answer_0(c allid, ENOTSUP);166 async_answer_0(chandle, ENOTSUP); 167 167 return; 168 168 } … … 170 170 size_t remain = 0; 171 171 const errno_t ret = hw_res_ops->dma_channel_remain(fun, channel, &remain); 172 async_answer_1(c allid, ret, remain);172 async_answer_1(chandle, ret, remain); 173 173 } 174 174 /**
Note:
See TracChangeset
for help on using the changeset viewer.