OSDN Git Service

sim: common: trim trailing whitespace
[pf3gnuchains/sourceware.git] / sim / common / hw-ports.h
1 /* Hardware ports.
2    Copyright (C) 1998, 2007, 2008, 2009, 2010, 2011
3    Free Software Foundation, Inc.
4    Contributed by Andrew Cagney and Cygnus Solutions.
5
6 This file is part of GDB, the GNU debugger.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21
22 #ifndef HW_PORTS_H
23 #define HW_PORTS_H
24
25 /* Initialize a port */
26
27 struct hw_port_descriptor {
28   const char *name;
29   int number;
30   int nr_ports;
31   port_direction direction;
32 };
33
34 void set_hw_ports (struct hw *hw, const struct hw_port_descriptor ports[]);
35
36 typedef void (hw_port_event_method)
37      (struct hw *me,
38       int my_port,
39       struct hw *source,
40       int source_port,
41       int level);
42
43 void set_hw_port_event (struct hw *hw, hw_port_event_method *to_port_event);
44
45
46 /* Port source
47
48    A device drives its output ports using the call
49
50    */
51
52 void hw_port_event
53 (struct hw *me,
54  int my_port,
55  int value);
56
57 /* This port event will then be propagated to any attached
58    destination ports.
59
60    Any interpretation of PORT and VALUE is model dependent.  As a
61    guideline the following are recommended: PCI interrupts A-D should
62    correspond to ports 0-3; level sensitive interrupts be requested
63    with a value of one and withdrawn with a value of 0; edge sensitive
64    interrupts always have a value of 1, the event its self is treated
65    as the interrupt.
66
67
68    Port destinations
69
70    Attached to each port of a device can be zero or more
71    destinations.  These destinations consist of a device/port pair.
72    A destination is attached/detached to a device line using the
73    attach and detach calls. */
74
75 void hw_port_attach
76 (struct hw *me,
77  int my_port,
78  struct hw *dest,
79  int dest_port,
80  object_disposition disposition);
81
82 void hw_port_detach
83 (struct hw *me,
84  int my_port,
85  struct hw *dest,
86  int dest_port);
87
88
89 /* Iterate over the list of ports attached to a device */
90
91 typedef void (hw_port_traverse_function)
92      (struct hw *me,
93       int my_port,
94       struct hw *dest,
95       int dest_port,
96       void *data);
97
98 void hw_port_traverse
99 (struct hw *me,
100  hw_port_traverse_function *handler,
101  void *data);
102
103
104 /* DESTINATION is attached (detached) to LINE of the device ME
105
106
107    Port conversion
108
109    Users refer to port numbers symbolically.  For instance a device
110    may refer to its `INT' signal which is internally represented by
111    port 3.
112
113    To convert to/from the symbolic and internal representation of a
114    port name/number.  The following functions are available. */
115
116 int hw_port_decode
117 (struct hw *me,
118  const char *symbolic_name,
119  port_direction direction);
120
121 int hw_port_encode
122 (struct hw *me,
123  int port_number,
124  char *buf,
125  int sizeof_buf,
126  port_direction direction);
127
128
129 #endif