2 * mahatma - a simple kernel framework
3 * Copyright (c) 2008, 2009 Daniel Mack <daniel@caiaq.de>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 /* wikilib and guilib includes */
28 #include "wikireader.h"
33 #include "touchscreen.h"
37 int wl_input_wait(struct wl_input_event
*ev
, int sleep
)
39 /* wl_input_wait() is called from the wikilib mainloop and we will
40 * get here regularily when the system has no other duty. Hence,
41 * the only thing we want to do here is go to sleep - the interrupt
42 * sources are set up and will bring us back to life at some point
46 if (serial_get_event(ev
))
49 if (touchscreen_get_event(ev
))
52 if (gpio_get_event(ev
))
55 /* no power saving return */
61 /* we only go to a power saving halt mode if there is no
63 if (!serial_output_pending()) {