source: mainline/uspace/drv/bus/isa/isa.c@ 3d4ad475

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

isa: Do not allocate and copy name string.

ddf_fun_create does that for us.

  • 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 char *skip_spaces(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, 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, char *val)
403{
404 unsigned int dma = 0;
405 char *end = NULL;
406
407 val = skip_spaces(val);
408 dma = (unsigned int) strtol(val, &end, 10);
409
410 if (val != end)
411 isa_fun_add_dma(fun, dma);
412}
413
414static void fun_parse_io_range(isa_fun_t *fun, char *val)
415{
416 size_t addr, len;
417 char *end = NULL;
418
419 val = skip_spaces(val);
420 addr = strtol(val, &end, 0x10);
421
422 if (val == end)
423 return;
424
425 val = skip_spaces(end);
426 len = strtol(val, &end, 0x10);
427
428 if (val == end)
429 return;
430
431 isa_fun_add_io_range(fun, addr, len);
432}
433
434static void get_match_id(char **id, char *val)
435{
436 char *end = val;
437
438 while (!isspace(*end))
439 end++;
440
441 size_t size = end - val + 1;
442 *id = (char *)malloc(size);
443 str_cpy(*id, size, val);
444}
445
446static void fun_parse_match_id(isa_fun_t *fun, char *val)
447{
448 char *id = NULL;
449 int score = 0;
450 char *end = NULL;
451 int rc;
452
453 val = skip_spaces(val);
454
455 score = (int)strtol(val, &end, 10);
456 if (val == end) {
457 ddf_msg(LVL_ERROR, "Cannot read match score for function "
458 "%s.", fun->fnode->name);
459 return;
460 }
461
462 val = skip_spaces(end);
463 get_match_id(&id, val);
464 if (id == NULL) {
465 ddf_msg(LVL_ERROR, "Cannot read match ID for function %s.",
466 fun->fnode->name);
467 return;
468 }
469
470 ddf_msg(LVL_DEBUG, "Adding match id '%s' with score %d to "
471 "function %s", id, score, fun->fnode->name);
472
473 rc = ddf_fun_add_match_id(fun->fnode, id, score);
474 if (rc != EOK) {
475 ddf_msg(LVL_ERROR, "Failed adding match ID: %s",
476 str_error(rc));
477 }
478
479 free(id);
480}
481
482static bool prop_parse(isa_fun_t *fun, char *line, const char *prop,
483 void (*read_fn)(isa_fun_t *, char *))
484{
485 size_t proplen = str_size(prop);
486
487 if (str_lcmp(line, prop, proplen) == 0) {
488 line += proplen;
489 line = skip_spaces(line);
490 (*read_fn)(fun, line);
491
492 return true;
493 }
494
495 return false;
496}
497
498static void fun_prop_parse(isa_fun_t *fun, char *line)
499{
500 /* Skip leading spaces. */
501 line = skip_spaces(line);
502
503 if (!prop_parse(fun, line, "io_range", &fun_parse_io_range) &&
504 !prop_parse(fun, line, "irq", &fun_parse_irq) &&
505 !prop_parse(fun, line, "dma", &fun_parse_dma) &&
506 !prop_parse(fun, line, "match", &fun_parse_match_id)) {
507
508 ddf_msg(LVL_ERROR, "Undefined device property at line '%s'",
509 line);
510 }
511}
512
513static char *isa_fun_read_info(char *fun_conf, isa_bus_t *isa)
514{
515 char *line;
516
517 /* Skip empty lines. */
518 do {
519 line = str_get_line(fun_conf, &fun_conf);
520
521 if (line == NULL) {
522 /* no more lines */
523 return NULL;
524 }
525
526 } while (line_empty(line));
527
528 /* Get device name. */
529 const char *fun_name = get_device_name(line);
530 if (fun_name == NULL)
531 return NULL;
532
533 isa_fun_t *fun = isa_fun_create(isa, fun_name);
534 if (fun == NULL) {
535 return NULL;
536 }
537
538 /* Get properties of the device (match ids, irq and io range). */
539 while (true) {
540 line = str_get_line(fun_conf, &fun_conf);
541
542 if (line_empty(line)) {
543 /* no more device properties */
544 break;
545 }
546
547 /*
548 * Get the device's property from the configuration line
549 * and store it in the device structure.
550 */
551 fun_prop_parse(fun, line);
552 }
553
554 /* Set device operations to the device. */
555 fun->fnode->ops = &isa_fun_ops;
556
557 ddf_msg(LVL_DEBUG, "Binding function %s.", fun->fnode->name);
558
559 /* XXX Handle error */
560 (void) ddf_fun_bind(fun->fnode);
561
562 list_append(&fun->bus_link, &isa->functions);
563
564 return fun_conf;
565}
566
567static void fun_conf_parse(char *conf, isa_bus_t *isa)
568{
569 while (conf != NULL && *conf != '\0') {
570 conf = isa_fun_read_info(conf, isa);
571 }
572}
573
574static void isa_functions_add(isa_bus_t *isa)
575{
576 char *fun_conf;
577
578 fun_conf = fun_conf_read(CHILD_FUN_CONF_PATH);
579 if (fun_conf != NULL) {
580 fun_conf_parse(fun_conf, isa);
581 free(fun_conf);
582 }
583}
584
585static int isa_dev_add(ddf_dev_t *dev)
586{
587 isa_bus_t *isa;
588
589 ddf_msg(LVL_DEBUG, "isa_dev_add, device handle = %d",
590 (int) dev->handle);
591
592 isa = ddf_dev_data_alloc(dev, sizeof(isa_bus_t));
593 if (isa == NULL)
594 return ENOMEM;
595
596 fibril_mutex_initialize(&isa->mutex);
597 isa->dev = dev;
598 list_initialize(&isa->functions);
599
600 /* Make the bus device more visible. Does not do anything. */
601 ddf_msg(LVL_DEBUG, "Adding a 'ctl' function");
602
603 fibril_mutex_lock(&isa->mutex);
604
605 isa->fctl = ddf_fun_create(dev, fun_exposed, "ctl");
606 if (isa->fctl == NULL) {
607 ddf_msg(LVL_ERROR, "Failed creating control function.");
608 return EXDEV;
609 }
610
611 if (ddf_fun_bind(isa->fctl) != EOK) {
612 ddf_fun_destroy(isa->fctl);
613 ddf_msg(LVL_ERROR, "Failed binding control function.");
614 return EXDEV;
615 }
616
617 /* Add functions as specified in the configuration file. */
618 isa_functions_add(isa);
619 ddf_msg(LVL_NOTE, "Finished enumerating legacy functions");
620
621 fibril_mutex_unlock(&isa->mutex);
622
623 return EOK;
624}
625
626static int isa_dev_remove(ddf_dev_t *dev)
627{
628 isa_bus_t *isa = ISA_BUS(dev);
629 int rc;
630
631 fibril_mutex_lock(&isa->mutex);
632
633 while (!list_empty(&isa->functions)) {
634 isa_fun_t *fun = list_get_instance(list_first(&isa->functions),
635 isa_fun_t, bus_link);
636
637 rc = ddf_fun_offline(fun->fnode);
638 if (rc != EOK) {
639 fibril_mutex_unlock(&isa->mutex);
640 ddf_msg(LVL_ERROR, "Failed offlining %s", fun->fnode->name);
641 return rc;
642 }
643
644 rc = ddf_fun_unbind(fun->fnode);
645 if (rc != EOK) {
646 fibril_mutex_unlock(&isa->mutex);
647 ddf_msg(LVL_ERROR, "Failed unbinding %s", fun->fnode->name);
648 return rc;
649 }
650
651 list_remove(&fun->bus_link);
652
653 ddf_fun_destroy(fun->fnode);
654 }
655
656 if (ddf_fun_unbind(isa->fctl) != EOK) {
657 fibril_mutex_unlock(&isa->mutex);
658 ddf_msg(LVL_ERROR, "Failed unbinding control function.");
659 return EXDEV;
660 }
661
662 fibril_mutex_unlock(&isa->mutex);
663
664 return EOK;
665}
666
667static int isa_fun_online(ddf_fun_t *fun)
668{
669 ddf_msg(LVL_DEBUG, "isa_fun_online()");
670 return ddf_fun_online(fun);
671}
672
673static int isa_fun_offline(ddf_fun_t *fun)
674{
675 ddf_msg(LVL_DEBUG, "isa_fun_offline()");
676 return ddf_fun_offline(fun);
677}
678
679
680static void isa_init()
681{
682 ddf_log_init(NAME, LVL_ERROR);
683 isa_fun_ops.interfaces[HW_RES_DEV_IFACE] = &isa_fun_hw_res_ops;
684}
685
686int main(int argc, char *argv[])
687{
688 printf(NAME ": HelenOS ISA bus driver\n");
689 isa_init();
690 return ddf_driver_main(&isa_driver);
691}
692
693/**
694 * @}
695 */
Note: See TracBrowser for help on using the repository browser.