Changeset 7fff38c1 in mainline
- Timestamp:
- 2011-09-03T12:29:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b29bb09
- Parents:
- f278930
- Location:
- uspace/drv/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/test/test1/test1.c
rf278930 r7fff38c1 205 205 rc = ddf_fun_unbind(fun); 206 206 if (rc != EOK) { 207 ddf_msg(LVL_ERROR, "Failed offlining function '%s'.", name);207 ddf_msg(LVL_ERROR, "Failed unbinding function '%s'.", name); 208 208 return rc; 209 209 } -
uspace/drv/test/test2/test2.c
rf278930 r7fff38c1 41 41 42 42 static int test2_add_device(ddf_dev_t *dev); 43 static int test2_dev_remove(ddf_dev_t *dev); 44 static int test2_fun_online(ddf_fun_t *fun); 45 static int test2_fun_offline(ddf_fun_t *fun); 43 46 44 47 static driver_ops_t driver_ops = { 45 .add_device = &test2_add_device 48 .add_device = &test2_add_device, 49 .dev_remove = &test2_dev_remove, 50 .fun_online = &test2_fun_online, 51 .fun_offline = &test2_fun_offline 46 52 }; 47 53 … … 50 56 .driver_ops = &driver_ops 51 57 }; 58 59 /* Device soft state */ 60 typedef struct { 61 ddf_dev_t *dev; 62 63 ddf_fun_t *fun_a; 64 ddf_fun_t *fun_err; 65 ddf_fun_t *child; 66 ddf_fun_t *test1; 67 } test2_t; 52 68 53 69 /** Register child and inform user about it. … … 60 76 */ 61 77 static int register_fun_verbose(ddf_dev_t *parent, const char *message, 62 const char *name, const char *match_id, int match_score )78 const char *name, const char *match_id, int match_score, ddf_fun_t **pfun) 63 79 { 64 80 ddf_fun_t *fun; … … 89 105 } 90 106 107 *pfun = fun; 108 91 109 ddf_msg(LVL_NOTE, "Registered child device `%s'", name); 92 110 return EOK; … … 100 118 static int postponed_birth(void *arg) 101 119 { 102 ddf_dev_t *dev = (ddf_dev_t *) arg;120 test2_t *test2 = (test2_t *) arg; 103 121 ddf_fun_t *fun_a; 104 122 int rc; … … 106 124 async_usleep(1000); 107 125 108 (void) register_fun_verbose( dev, "child driven by the same task",109 "child", "virtual&test2", 10 );110 (void) register_fun_verbose( dev, "child driven by test1",111 "test1", "virtual&test1", 10 );112 113 fun_a = ddf_fun_create( dev, fun_exposed, "a");126 (void) register_fun_verbose(test2->dev, "child driven by the same task", 127 "child", "virtual&test2", 10, &test2->child); 128 (void) register_fun_verbose(test2->dev, "child driven by test1", 129 "test1", "virtual&test1", 10, &test2->test1); 130 131 fun_a = ddf_fun_create(test2->dev, fun_exposed, "a"); 114 132 if (fun_a == NULL) { 115 133 ddf_msg(LVL_ERROR, "Failed creating function 'a'."); … … 124 142 125 143 ddf_fun_add_to_category(fun_a, "virtual"); 126 144 test2->fun_a = fun_a; 145 146 return EOK; 147 } 148 149 static int fun_remove(ddf_fun_t *fun, const char *name) 150 { 151 int rc; 152 153 ddf_msg(LVL_DEBUG, "fun_remove(%p, '%s')\n", fun, name); 154 rc = ddf_fun_offline(fun); 155 if (rc != EOK) { 156 ddf_msg(LVL_ERROR, "Error offlining function '%s'.", name); 157 return rc; 158 } 159 160 rc = ddf_fun_unbind(fun); 161 if (rc != EOK) { 162 ddf_msg(LVL_ERROR, "Failed unbinding function '%s'.", name); 163 return rc; 164 } 165 166 ddf_fun_destroy(fun); 127 167 return EOK; 128 168 } … … 130 170 static int test2_add_device(ddf_dev_t *dev) 131 171 { 172 test2_t *test2; 173 132 174 ddf_msg(LVL_DEBUG, "test2_add_device(name=\"%s\", handle=%d)", 133 175 dev->name, (int) dev->handle); 134 176 177 test2 = ddf_dev_data_alloc(dev, sizeof(test2_t)); 178 if (test2 == NULL) { 179 ddf_msg(LVL_ERROR, "Failed allocating soft state."); 180 return ENOMEM; 181 } 182 183 test2->dev = dev; 184 135 185 if (str_cmp(dev->name, "child") != 0) { 136 fid_t postpone = fibril_create(postponed_birth, dev);186 fid_t postpone = fibril_create(postponed_birth, test2); 137 187 if (postpone == 0) { 138 188 ddf_msg(LVL_ERROR, "fibril_create() failed."); … … 142 192 } else { 143 193 (void) register_fun_verbose(dev, "child without available driver", 144 "ERROR", "non-existent.match.id", 10); 145 } 146 147 return EOK; 194 "ERROR", "non-existent.match.id", 10, &test2->fun_err); 195 } 196 197 return EOK; 198 } 199 200 static int test2_dev_remove(ddf_dev_t *dev) 201 { 202 test2_t *test2 = (test2_t *)dev->driver_data; 203 int rc; 204 205 ddf_msg(LVL_DEBUG, "test2_dev_remove(%p)", dev); 206 207 if (test2->fun_a != NULL) { 208 rc = fun_remove(test2->fun_a, "a"); 209 if (rc != EOK) 210 return rc; 211 } 212 213 if (test2->fun_err != NULL) { 214 rc = fun_remove(test2->fun_err, "ERROR"); 215 if (rc != EOK) 216 return rc; 217 } 218 219 if (test2->child != NULL) { 220 rc = fun_remove(test2->child, "child"); 221 if (rc != EOK) 222 return rc; 223 } 224 225 if (test2->test1 != NULL) { 226 rc = fun_remove(test2->test1, "test1"); 227 if (rc != EOK) 228 return rc; 229 } 230 231 return EOK; 232 } 233 234 235 static int test2_fun_online(ddf_fun_t *fun) 236 { 237 ddf_msg(LVL_DEBUG, "test2_fun_online()"); 238 return ddf_fun_online(fun); 239 } 240 241 static int test2_fun_offline(ddf_fun_t *fun) 242 { 243 ddf_msg(LVL_DEBUG, "test2_fun_offline()"); 244 return ddf_fun_offline(fun); 148 245 } 149 246
Note:
See TracChangeset
for help on using the changeset viewer.