source: mainline/uspace/drv/bus/isa/isa.c@ 18ae0c8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 18ae0c8 was 18ae0c8, checked in by Jan Vesely <jano.vesely@…>, 13 years ago

isa: Get rid of double NULL check.

Both fun_conf_parse and free are NULL safe.

  • Property mode set to 100644
File size: 14.9 KB
Line 
1/*
2 * Copyright (c) 2010 Lenka Trochtova
3 * Copyright (c) 2011 Jiri Svoboda
4 * Copyright (c) 2011 Jan Vesely
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * - Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * - Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * - The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31/**
32 * @defgroup isa ISA bus driver.
33 * @brief HelenOS ISA bus driver.
34 * @{
35 */
36
37/** @file
38 */
39
40#include <adt/list.h>
41#include <assert.h>
42#include <stdio.h>
43#include <errno.h>
44#include <bool.h>
45#include <fibril_synch.h>
46#include <stdlib.h>
47#include <str.h>
48#include <str_error.h>
49#include <ctype.h>
50#include <macros.h>
51#include <malloc.h>
52#include <dirent.h>
53#include <fcntl.h>
54#include <ipc/irc.h>
55#include <ipc/services.h>
56#include <sysinfo.h>
57#include <ns.h>
58#include <sys/stat.h>
59#include <ipc/irc.h>
60#include <ipc/services.h>
61#include <sysinfo.h>
62#include <ns.h>
63
64#include <ddf/driver.h>
65#include <ddf/log.h>
66#include <ops/hw_res.h>
67
68#include <device/hw_res.h>
69
70#include "i8237.h"
71
72#define NAME "isa"
73#define CHILD_FUN_CONF_PATH "/drv/isa/isa.dev"
74
75/** Obtain soft-state from device node */
76#define ISA_BUS(dev) ((isa_bus_t *) ((dev)->driver_data))
77
78/** Obtain soft-state from function node */
79#define ISA_FUN(fun) ((isa_fun_t *) ((fun)->driver_data))
80
81#define ISA_MAX_HW_RES 5
82
83typedef struct {
84 fibril_mutex_t mutex;
85 ddf_dev_t *dev;
86 ddf_fun_t *fctl;
87 list_t functions;
88} isa_bus_t;
89
90typedef struct isa_fun {
91 fibril_mutex_t mutex;
92 ddf_fun_t *fnode;
93 hw_resource_t resources[ISA_MAX_HW_RES];
94 hw_resource_list_t hw_resources;
95 link_t bus_link;
96} isa_fun_t;
97
98static hw_resource_list_t *isa_get_fun_resources(ddf_fun_t *fnode)
99{
100 isa_fun_t *fun = ISA_FUN(fnode);
101 assert(fun != NULL);
102
103 return &fun->hw_resources;
104}
105
106static bool isa_enable_fun_interrupt(ddf_fun_t *fnode)
107{
108 /* This is an old ugly way, copied from pci driver */
109 assert(fnode);
110 isa_fun_t *isa_fun = fnode->driver_data;
111
112 sysarg_t apic;
113 sysarg_t i8259;
114
115 async_sess_t *irc_sess = NULL;
116
117 if (((sysinfo_get_value("apic", &apic) == EOK) && (apic))
118 || ((sysinfo_get_value("i8259", &i8259) == EOK) && (i8259))) {
119 irc_sess = service_connect_blocking(EXCHANGE_SERIALIZE,
120 SERVICE_IRC, 0, 0);
121 }
122
123 if (!irc_sess)
124 return false;
125
126 assert(isa_fun);
127 const hw_resource_list_t *res = &isa_fun->hw_resources;
128 assert(res);
129 for (size_t i = 0; i < res->count; ++i) {
130 if (res->resources[i].type == INTERRUPT) {
131 const int irq = res->resources[i].res.interrupt.irq;
132
133 async_exch_t *exch = async_exchange_begin(irc_sess);
134 const int rc =
135 async_req_1_0(exch, IRC_ENABLE_INTERRUPT, irq);
136 async_exchange_end(exch);
137
138 if (rc != EOK) {
139 async_hangup(irc_sess);
140 return false;
141 }
142 }
143 }
144
145 async_hangup(irc_sess);
146 return true;
147}
148
149static int isa_dma_channel_fun_setup(ddf_fun_t *fnode,
150 unsigned int channel, uint32_t pa, uint16_t size, uint8_t mode)
151{
152 assert(fnode);
153 isa_fun_t *isa_fun = fnode->driver_data;
154 const hw_resource_list_t *res = &isa_fun->hw_resources;
155 assert(res);
156
157 const unsigned int ch = channel;
158 for (size_t i = 0; i < res->count; ++i) {
159 if (((res->resources[i].type == DMA_CHANNEL_16) &&
160 (res->resources[i].res.dma_channel.dma16 == ch)) ||
161 ((res->resources[i].type == DMA_CHANNEL_8) &&
162 (res->resources[i].res.dma_channel.dma8 == ch))) {
163 return dma_setup_channel(channel, pa, size, mode);
164 }
165 }
166
167 return EINVAL;
168}
169
170static hw_res_ops_t isa_fun_hw_res_ops = {
171 .get_resource_list = isa_get_fun_resources,
172 .enable_interrupt = isa_enable_fun_interrupt,
173 .dma_channel_setup = isa_dma_channel_fun_setup,
174};
175
176static ddf_dev_ops_t isa_fun_ops;
177
178static int isa_dev_add(ddf_dev_t *dev);
179static int isa_dev_remove(ddf_dev_t *dev);
180static int isa_fun_online(ddf_fun_t *fun);
181static int isa_fun_offline(ddf_fun_t *fun);
182
183/** The isa device driver's standard operations */
184static driver_ops_t isa_ops = {
185 .dev_add = &isa_dev_add,
186 .dev_remove = &isa_dev_remove,
187 .fun_online = &isa_fun_online,
188 .fun_offline = &isa_fun_offline
189};
190
191/** The isa device driver structure. */
192static driver_t isa_driver = {
193 .name = NAME,
194 .driver_ops = &isa_ops
195};
196
197static isa_fun_t *isa_fun_create(isa_bus_t *isa, const char *name)
198{
199 ddf_fun_t *fnode = ddf_fun_create(isa->dev, fun_inner, name);
200 if (fnode == NULL)
201 return NULL;
202
203 isa_fun_t *fun = ddf_fun_data_alloc(fnode, sizeof(isa_fun_t));
204 if (fun == NULL) {
205 ddf_fun_destroy(fnode);
206 return NULL;
207 }
208
209 fibril_mutex_initialize(&fun->mutex);
210 fun->hw_resources.resources = fun->resources;
211
212 fun->fnode = fnode;
213 return fun;
214}
215
216static char *fun_conf_read(const char *conf_path)
217{
218 bool suc = false;
219 char *buf = NULL;
220 bool opened = false;
221 int fd;
222 size_t len = 0;
223
224 fd = open(conf_path, O_RDONLY);
225 if (fd < 0) {
226 ddf_msg(LVL_ERROR, "Unable to open %s", conf_path);
227 goto cleanup;
228 }
229
230 opened = true;
231
232 len = lseek(fd, 0, SEEK_END);
233 lseek(fd, 0, SEEK_SET);
234 if (len == 0) {
235 ddf_msg(LVL_ERROR, "Configuration file '%s' is empty.",
236 conf_path);
237 goto cleanup;
238 }
239
240 buf = malloc(len + 1);
241 if (buf == NULL) {
242 ddf_msg(LVL_ERROR, "Memory allocation failed.");
243 goto cleanup;
244 }
245
246 if (0 >= read(fd, buf, len)) {
247 ddf_msg(LVL_ERROR, "Unable to read file '%s'.", conf_path);
248 goto cleanup;
249 }
250
251 buf[len] = 0;
252
253 suc = true;
254
255cleanup:
256 if (!suc && buf != NULL) {
257 free(buf);
258 buf = NULL;
259 }
260
261 if (opened)
262 close(fd);
263
264 return buf;
265}
266
267static char *str_get_line(char *str, char **next)
268{
269 char *line = str;
270
271 if (str == NULL) {
272 *next = NULL;
273 return NULL;
274 }
275
276 while (*str != '\0' && *str != '\n') {
277 str++;
278 }
279
280 if (*str != '\0') {
281 *next = str + 1;
282 } else {
283 *next = NULL;
284 }
285
286 *str = '\0';
287 return line;
288}
289
290static bool line_empty(const char *line)
291{
292 while (line != NULL && *line != 0) {
293 if (!isspace(*line))
294 return false;
295 line++;
296 }
297
298 return true;
299}
300
301static char *get_device_name(char *line)
302{
303 /* Skip leading spaces. */
304 while (*line != '\0' && isspace(*line)) {
305 line++;
306 }
307
308 /* Get the name part of the rest of the line. */
309 strtok(line, ":");
310 return line;
311}
312
313static inline const char *skip_spaces(const char *line)
314{
315 /* Skip leading spaces. */
316 while (*line != '\0' && isspace(*line))
317 line++;
318
319 return line;
320}
321
322static void isa_fun_add_irq(isa_fun_t *fun, int irq)
323{
324 size_t count = fun->hw_resources.count;
325 hw_resource_t *resources = fun->hw_resources.resources;
326
327 if (count < ISA_MAX_HW_RES) {
328 resources[count].type = INTERRUPT;
329 resources[count].res.interrupt.irq = irq;
330
331 fun->hw_resources.count++;
332
333 ddf_msg(LVL_NOTE, "Added irq 0x%x to function %s", irq,
334 fun->fnode->name);
335 }
336}
337
338static void isa_fun_add_dma(isa_fun_t *fun, int dma)
339{
340 size_t count = fun->hw_resources.count;
341 hw_resource_t *resources = fun->hw_resources.resources;
342
343 if (count < ISA_MAX_HW_RES) {
344 if ((dma > 0) && (dma < 4)) {
345 resources[count].type = DMA_CHANNEL_8;
346 resources[count].res.dma_channel.dma8 = dma;
347
348 fun->hw_resources.count++;
349 ddf_msg(LVL_NOTE, "Added dma 0x%x to function %s", dma,
350 fun->fnode->name);
351
352 return;
353 }
354
355 if ((dma > 4) && (dma < 8)) {
356 resources[count].type = DMA_CHANNEL_16;
357 resources[count].res.dma_channel.dma16 = dma;
358
359 fun->hw_resources.count++;
360 ddf_msg(LVL_NOTE, "Added dma 0x%x to function %s", dma,
361 fun->fnode->name);
362
363 return;
364 }
365
366 ddf_msg(LVL_WARN, "Skipped dma 0x%x for function %s", dma,
367 fun->fnode->name);
368 }
369}
370
371static void isa_fun_add_io_range(isa_fun_t *fun, size_t addr, size_t len)
372{
373 size_t count = fun->hw_resources.count;
374 hw_resource_t *resources = fun->hw_resources.resources;
375
376 if (count < ISA_MAX_HW_RES) {
377 resources[count].type = IO_RANGE;
378 resources[count].res.io_range.address = addr;
379 resources[count].res.io_range.size = len;
380 resources[count].res.io_range.endianness = LITTLE_ENDIAN;
381
382 fun->hw_resources.count++;
383
384 ddf_msg(LVL_NOTE, "Added io range (addr=0x%x, size=0x%x) to "
385 "function %s", (unsigned int) addr, (unsigned int) len,
386 fun->fnode->name);
387 }
388}
389
390static void fun_parse_irq(isa_fun_t *fun, const char *val)
391{
392 int irq = 0;
393 char *end = NULL;
394
395 val = skip_spaces(val);
396 irq = (int) strtol(val, &end, 10);
397
398 if (val != end)
399 isa_fun_add_irq(fun, irq);
400}
401
402static void fun_parse_dma(isa_fun_t *fun, const char *val)
403{
404 char *end = NULL;
405
406 val = skip_spaces(val);
407 int dma = strtol(val, &end, 10);
408
409 if (val != end)
410 isa_fun_add_dma(fun, dma);
411}
412
413static void fun_parse_io_range(isa_fun_t *fun, const char *val)
414{
415 size_t addr, len;
416 char *end = NULL;
417
418 val = skip_spaces(val);
419 addr = strtol(val, &end, 0x10);
420
421 if (val == end)
422 return;
423
424 val = skip_spaces(end);
425 len = strtol(val, &end, 0x10);
426
427 if (val == end)
428 return;
429
430 isa_fun_add_io_range(fun, addr, len);
431}
432
433static void get_match_id(char **id, const char *val)
434{
435 const char *end = val;
436
437 while (!isspace(*end))
438 end++;
439
440 size_t size = end - val + 1;
441 *id = (char *)malloc(size);
442 str_cpy(*id, size, val);
443}
444
445static void fun_parse_match_id(isa_fun_t *fun, const char *val)
446{
447 char *id = NULL;
448 int score = 0;
449 char *end = NULL;
450 int rc;
451
452 val = skip_spaces(val);
453
454 score = (int)strtol(val, &end, 10);
455 if (val == end) {
456 ddf_msg(LVL_ERROR, "Cannot read match score for function "
457 "%s.", fun->fnode->name);
458 return;
459 }
460
461 val = skip_spaces(end);
462 get_match_id(&id, val);
463 if (id == NULL) {
464 ddf_msg(LVL_ERROR, "Cannot read match ID for function %s.",
465 fun->fnode->name);
466 return;
467 }
468
469 ddf_msg(LVL_DEBUG, "Adding match id '%s' with score %d to "
470 "function %s", id, score, fun->fnode->name);
471
472 rc = ddf_fun_add_match_id(fun->fnode, id, score);
473 if (rc != EOK) {
474 ddf_msg(LVL_ERROR, "Failed adding match ID: %s",
475 str_error(rc));
476 }
477
478 free(id);
479}
480
481static bool prop_parse(isa_fun_t *fun, const char *line, const char *prop,
482 void (*read_fn)(isa_fun_t *, const char *))
483{
484 size_t proplen = str_size(prop);
485
486 if (str_lcmp(line, prop, proplen) == 0) {
487 line += proplen;
488 line = skip_spaces(line);
489 (*read_fn)(fun, line);
490
491 return true;
492 }
493
494 return false;
495}
496
497static void fun_prop_parse(isa_fun_t *fun, const char *line)
498{
499 /* Skip leading spaces. */
500 line = skip_spaces(line);
501
502 if (!prop_parse(fun, line, "io_range", &fun_parse_io_range) &&
503 !prop_parse(fun, line, "irq", &fun_parse_irq) &&
504 !prop_parse(fun, line, "dma", &fun_parse_dma) &&
505 !prop_parse(fun, line, "match", &fun_parse_match_id)) {
506
507 ddf_msg(LVL_ERROR, "Undefined device property at line '%s'",
508 line);
509 }
510}
511
512static char *isa_fun_read_info(char *fun_conf, isa_bus_t *isa)
513{
514 char *line;
515
516 /* Skip empty lines. */
517 do {
518 line = str_get_line(fun_conf, &fun_conf);
519
520 if (line == NULL) {
521 /* no more lines */
522 return NULL;
523 }
524
525 } while (line_empty(line));
526
527 /* Get device name. */
528 const char *fun_name = get_device_name(line);
529 if (fun_name == NULL)
530 return NULL;
531
532 isa_fun_t *fun = isa_fun_create(isa, fun_name);
533 if (fun == NULL) {
534 return NULL;
535 }
536
537 /* Get properties of the device (match ids, irq and io range). */
538 while (true) {
539 line = str_get_line(fun_conf, &fun_conf);
540
541 if (line_empty(line)) {
542 /* no more device properties */
543 break;
544 }
545
546 /*
547 * Get the device's property from the configuration line
548 * and store it in the device structure.
549 */
550 fun_prop_parse(fun, line);
551 }
552
553 /* Set device operations to the device. */
554 fun->fnode->ops = &isa_fun_ops;
555
556 ddf_msg(LVL_DEBUG, "Binding function %s.", fun->fnode->name);
557
558 /* XXX Handle error */
559 (void) ddf_fun_bind(fun->fnode);
560
561 list_append(&fun->bus_link, &isa->functions);
562
563 return fun_conf;
564}
565
566static void fun_conf_parse(char *conf, isa_bus_t *isa)
567{
568 while (conf != NULL && *conf != '\0') {
569 conf = isa_fun_read_info(conf, isa);
570 }
571}
572
573static void isa_functions_add(isa_bus_t *isa)
574{
575 char *fun_conf = fun_conf_read(CHILD_FUN_CONF_PATH);
576 fun_conf_parse(fun_conf, isa);
577 free(fun_conf);
578}
579
580static int isa_dev_add(ddf_dev_t *dev)
581{
582 isa_bus_t *isa;
583
584 ddf_msg(LVL_DEBUG, "isa_dev_add, device handle = %d",
585 (int) dev->handle);
586
587 isa = ddf_dev_data_alloc(dev, sizeof(isa_bus_t));
588 if (isa == NULL)
589 return ENOMEM;
590
591 fibril_mutex_initialize(&isa->mutex);
592 isa->dev = dev;
593 list_initialize(&isa->functions);
594
595 /* Make the bus device more visible. Does not do anything. */
596 ddf_msg(LVL_DEBUG, "Adding a 'ctl' function");
597
598 fibril_mutex_lock(&isa->mutex);
599
600 isa->fctl = ddf_fun_create(dev, fun_exposed, "ctl");
601 if (isa->fctl == NULL) {
602 ddf_msg(LVL_ERROR, "Failed creating control function.");
603 return EXDEV;
604 }
605
606 if (ddf_fun_bind(isa->fctl) != EOK) {
607 ddf_fun_destroy(isa->fctl);
608 ddf_msg(LVL_ERROR, "Failed binding control function.");
609 return EXDEV;
610 }
611
612 /* Add functions as specified in the configuration file. */
613 isa_functions_add(isa);
614 ddf_msg(LVL_NOTE, "Finished enumerating legacy functions");
615
616 fibril_mutex_unlock(&isa->mutex);
617
618 return EOK;
619}
620
621static int isa_dev_remove(ddf_dev_t *dev)
622{
623 isa_bus_t *isa = ISA_BUS(dev);
624 int rc;
625
626 fibril_mutex_lock(&isa->mutex);
627
628 while (!list_empty(&isa->functions)) {
629 isa_fun_t *fun = list_get_instance(list_first(&isa->functions),
630 isa_fun_t, bus_link);
631
632 rc = ddf_fun_offline(fun->fnode);
633 if (rc != EOK) {
634 fibril_mutex_unlock(&isa->mutex);
635 ddf_msg(LVL_ERROR, "Failed offlining %s", fun->fnode->name);
636 return rc;
637 }
638
639 rc = ddf_fun_unbind(fun->fnode);
640 if (rc != EOK) {
641 fibril_mutex_unlock(&isa->mutex);
642 ddf_msg(LVL_ERROR, "Failed unbinding %s", fun->fnode->name);
643 return rc;
644 }
645
646 list_remove(&fun->bus_link);
647
648 ddf_fun_destroy(fun->fnode);
649 }
650
651 if (ddf_fun_unbind(isa->fctl) != EOK) {
652 fibril_mutex_unlock(&isa->mutex);
653 ddf_msg(LVL_ERROR, "Failed unbinding control function.");
654 return EXDEV;
655 }
656
657 fibril_mutex_unlock(&isa->mutex);
658
659 return EOK;
660}
661
662static int isa_fun_online(ddf_fun_t *fun)
663{
664 ddf_msg(LVL_DEBUG, "isa_fun_online()");
665 return ddf_fun_online(fun);
666}
667
668static int isa_fun_offline(ddf_fun_t *fun)
669{
670 ddf_msg(LVL_DEBUG, "isa_fun_offline()");
671 return ddf_fun_offline(fun);
672}
673
674
675static void isa_init()
676{
677 ddf_log_init(NAME, LVL_ERROR);
678 isa_fun_ops.interfaces[HW_RES_DEV_IFACE] = &isa_fun_hw_res_ops;
679}
680
681int main(int argc, char *argv[])
682{
683 printf(NAME ": HelenOS ISA bus driver\n");
684 isa_init();
685 return ddf_driver_main(&isa_driver);
686}
687
688/**
689 * @}
690 */
Note: See TracBrowser for help on using the repository browser.