summaryrefslogtreecommitdiffstats
path: root/c/src/libmisc/monitor/mon-driver.c
blob: d5cff24a19539cdcf64cbb93ce5c1b6552d36ac5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
 * RTEMS monitor IO (device drivers) support
 *
 * There are 2 "driver" things the monitor knows about.
 *
 *    1. Regular RTEMS drivers.
 *         This is a table indexed by major device number and
 *         containing driver entry points only.
 *
 *    2. Driver name table.
 *         A separate table of names for drivers.
 *         The table converts driver names to a major number
 *         as index into the driver table and a minor number
 *         for an argument to driver.
 *
 *  Drivers are displayed with 'driver' command.
 *  Names are displayed with 'name' command.
 *
 *  $Id$
 */

#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <rtems.h>

#include "monitor.h"

#include <stdio.h>
#include <stdlib.h>             /* strtoul() */

#define DATACOL 15
#define CONTCOL DATACOL		/* continued col */


void
rtems_monitor_driver_canonical(
    rtems_monitor_driver_t *canonical_driver,
    void                   *driver_void
)
{
    rtems_driver_address_table *d = (rtems_driver_address_table *) driver_void;

    rtems_monitor_symbol_canonical_by_value(&canonical_driver->initialization,
                                            d->initialization);

    rtems_monitor_symbol_canonical_by_value(&canonical_driver->open,
                                            d->open);
    rtems_monitor_symbol_canonical_by_value(&canonical_driver->close,
                                            d->close);
    rtems_monitor_symbol_canonical_by_value(&canonical_driver->read,
                                            d->read);
    rtems_monitor_symbol_canonical_by_value(&canonical_driver->write,
                                            d->write);
    rtems_monitor_symbol_canonical_by_value(&canonical_driver->control,
                                            d->control);
}


void *
rtems_monitor_driver_next(
    void                  *object_info,
    rtems_monitor_driver_t *canonical_driver,
    rtems_id              *next_id
)
{
    rtems_configuration_table *c = _Configuration_Table;
    int n = rtems_get_index(*next_id);

    if (n >= c->number_of_device_drivers)
        goto failed;
    
    _Thread_Disable_dispatch();

    /*
     * dummy up a fake id and name for this item
     */

    canonical_driver->id = n;
    canonical_driver->name = rtems_build_name('-', '-', '-', '-');

    *next_id += 1;
    return (void *) (c->Device_driver_table + n);

failed:
    *next_id = RTEMS_OBJECT_ID_FINAL;
    return 0;
}


void
rtems_monitor_driver_dump_header(
    boolean verbose
)
{
    printf("\
  Major      Entry points\n");
/*23456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789
0         1         2         3         4         5         6         7       */
    rtems_monitor_separator();
}

void
rtems_monitor_driver_dump(
    rtems_monitor_driver_t *monitor_driver,
    boolean                 verbose
)
{
    unsigned32          length = 0;

    length += printf("  %d", monitor_driver->id);

    length += rtems_monitor_pad(13, length);
    length += printf("init: ");
    length += rtems_monitor_symbol_dump(&monitor_driver->initialization, verbose);
    length += printf(";  control: ");
    length += rtems_monitor_symbol_dump(&monitor_driver->control, verbose);
    length += printf("\n");
    length = 0;

    length += rtems_monitor_pad(13, length);

    length += printf("open: ");
    length += rtems_monitor_symbol_dump(&monitor_driver->open, verbose);
    length += printf(";  close: ");
    length += rtems_monitor_symbol_dump(&monitor_driver->close, verbose);
    length += printf("\n");
    length = 0;

    length += rtems_monitor_pad(13, length);

    length += printf("read: ");
    length += rtems_monitor_symbol_dump(&monitor_driver->read, verbose);
    length += printf(";  write: ");
    length += rtems_monitor_symbol_dump(&monitor_driver->write, verbose);
    length += printf("\n");
    length = 0;
}