Lines Matching +full:d +full:- +full:bus

7 http://www.apache.org/licenses/LICENSE-2.0
25 dbus.c - Contains the handlers for the D-Bus commands which the daemon can
27 flash.c - Contains the functions for performing flash access including
29 lpc.c - Contains the functions for controlling the LPC bus mapping
30 including pointing the bus so it maps flash and memory.
31 transport_mbox.c - Contains the handlers for the mbox commands which the daemon
33 windows.c - Contains the functions for managing the window cache.
41 UNINITIALISED - The daemon is still in the initialisation phase and
43 ACTIVE_MAPS_FLASH - The daemon is polling for incoming commands, is not
44 currently suspended and the LPC bus maps the flash
46 SUSPEND_MAPS_FLASH - The daemon is polling for incoming commands, is
47 currently suspended and the LPC bus maps the flash
49 ACTIVE_MAPS_MEM - The daemon is polling for incoming commands, is not
50 currently suspended and the LPC bus maps the reserved
52 SUSPEND_MAPS_MEM - The daemon is polling for incoming commands, is
53 currently suspended and the LPC bus maps the reserved
65 UNINITIALISED -> ACTIVE_MAPS_FLASH - Uninitiated: Occurs when the daemon is
67 ACTIVE_MAPS_FLASH -> SUSPEND_MAPS_FLASH - Suspend command received over
68 D-Bus
69 SUSPEND_MAPS_FLASH -> ACTIVE_MAPS_FLASH - Resume command received over
70 D-Bus
71 ACTIVE_MAPS_MEM -> SUSPEND_MAPS_MEM - Suspend command received over D-Bus
72 SUSPEND_MAPS_MEM -> ACTIVE_MAPS_MEM - Resume command received over D-Bus
73 ACTIVE_MAPS_FLASH -> ACTIVE_MAPS_MEM - GET_MBOX_INFO command received
74 SUSPEND_MAPS_FLASH -> SUSPEND_MAPS_MEM - GET_MBOX_INFO command received
75 ACTIVE_MAPS_MEM -> ACTIVE_MAPS_FLASH - Reset D-Bus or mbox command received
76 SUSPEND_MAPS_MEM -> SUSPEND_MAPS_FLASH - Transition not allowed, we
97 this window and the host pointed at its location on the LPC bus.
109 (*) - required
110 (#) - optional but recommended
111 (~) - optional
113 --flash * - The size of the PNOR image on the flash device
114 --window-size # - The size to make each window in the cache
115 --window-num # - The number of windows to have in the cache
116 --verbose ~ - Increase the verbosity with which the daemon runs
117 --sys-log ~ - Use the system log rather than outputting to the console
121 printed and the daemon will terminate. If window-size and window-num aren't
137 the mbox, D-Bus or signal file descriptors.
148 #### Handling D-Bus Commands
150 When an event occurs on the D-Bus file descriptor the D-Bus request is read from
151 the D-Bus interface and processed.
154 is then written back to the D-Bus interface to indicate the outcome of the
166 SIGINT - Terminate the daemon
167 SIGTERM - Terminate the daemon
168 SIGHUP - Clear the window cache and point the LPC bus mapping back to
175 to initialise, received SIGINT or SIGTERM, or because it received the kill D-Bus
179 the active window has been closed, points the LPC bus mapping back to flash,