make keyboard reset driver generic (not pc keyboard driver dependent)
[coreboot.git] / payloads / libpayload / include / libpayload.h
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 /**
31  * @mainpage
32  *
33  * @section intro Introduction
34  * libpayload is a small BSD-licensed static library (a lightweight
35  * implementation of common and useful functions) intended to be used
36  * as a basis for coreboot payloads.
37  *
38  * @section example Example
39  * Here is an example of a very simple payload:
40  * @include sample/hello.c
41  */
42
43 #ifndef _LIBPAYLOAD_H
44 #define _LIBPAYLOAD_H
45
46 #include <stddef.h>
47 #include <arch/types.h>
48 #include <arch/io.h>
49 #include <arch/virtual.h>
50 #include <sysinfo.h>
51 #include <stdarg.h>
52 #include <lar.h>
53 #include <pci.h>
54
55 #define MIN(a,b) ((a) < (b) ? (a) : (b))
56 #define MAX(a,b) ((a) > (b) ? (a) : (b))
57 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
58
59 #define LITTLE_ENDIAN   1234
60 #define BIG_ENDIAN      4321
61
62 #define EXIT_SUCCESS 0
63 #define EXIT_FAILURE 1
64
65 #define RAND_MAX 0x7fffffff
66
67 #define MAX_ARGC_COUNT 10
68
69 /*
70  * Payload information parameters - these are used to pass information
71  * to the entity loading the payload.
72  * Usage:   PAYLOAD_INFO(key, value)
73  * Example: PAYLOAD_INFO(name, "CoreInfo!")
74  */
75 #define _pstruct(key) __pinfo_ ##key
76 #define PAYLOAD_INFO(key, value)                                        \
77 static const char _pstruct(key)[]                                        \
78   __attribute__((__used__))                                              \
79   __attribute__((section(".note.pinfo"),unused)) = #key "=" value
80
81 /**
82  * @defgroup nvram NVRAM and RTC functions
83  * @{
84  */
85
86 #define NVRAM_RTC_SECONDS        0      /**< RTC Seconds offset in CMOS */
87 #define NVRAM_RTC_MINUTES        2      /**< RTC Minutes offset in CMOS */
88 #define NVRAM_RTC_HOURS          4      /**< RTC Hours offset in CMOS */
89 #define NVRAM_RTC_DAY            7      /**< RTC Days offset in CMOS */
90 #define NVRAM_RTC_MONTH          8      /**< RTC Month offset in CMOS */
91 #define NVRAM_RTC_YEAR           9      /**< RTC Year offset in CMOS */
92 #define NVRAM_RTC_FREQ_SELECT    10     /**< RTC Update Status Register */
93 #define  NVRAM_RTC_UIP           0x80
94
95 /** Broken down time structure */
96 struct tm {
97         int tm_sec;   /**< Number of seconds after the minute */
98         int tm_min;   /**< Number of minutes after the hour */
99         int tm_hour;  /**< Number of hours past midnight */
100         int tm_mday;  /**< The day of the month */
101         int tm_mon;   /**< The month of the year */
102         int tm_year;  /**< The number of years since 1900 */
103         int tm_wday;  /**< The day of the week */
104         int tm_yday;  /**< The number of days since January 1 */
105         int tm_isdst; /**< A flag indicating daylight savings time */
106 };
107
108 u8 nvram_read(u8 addr);
109 void nvram_write(u8 val, u8 addr);
110 int nvram_updating(void);
111 void rtc_read_clock(struct tm *tm);
112 /** @} */
113
114 /**
115  * @defgroup usb USB functions
116  * @{
117  */
118 int usb_initialize(void);                                                      
119 int usbhid_havechar(void);
120 int usbhid_getchar(void);
121 /** @} */
122
123 /**
124  * @defgroup input Device functions
125  * @{ @}
126  */
127
128 extern void (*reset_handler)(void);
129 int add_reset_handler(void (*new_handler)(void));
130
131 /**
132  * @defgroup keyboard Keyboard functions
133  * @ingroup input
134  * @{
135  */
136 void keyboard_init(void);
137 int keyboard_havechar(void);
138 unsigned char keyboard_get_scancode(void);
139 int keyboard_getchar(void);
140 int keyboard_set_layout(char *country);
141 /** @} */
142
143 /**
144  * @defgroup serial Serial functions
145  * @ingroup input
146  * @{
147  */
148 void serial_init(void);
149 void serial_hardware_init(int port, int speed, int word_bits, int parity, int stop_bits);
150 void serial_putchar(unsigned int c);
151 int serial_havechar(void);
152 int serial_getchar(void);
153 void serial_clear(void);
154 void serial_start_bold(void);
155 void serial_end_bold(void);
156 void serial_start_reverse(void);
157 void serial_end_reverse(void);
158 void serial_start_altcharset(void);
159 void serial_end_altcharset(void);
160 void serial_set_color(short fg, short bg);
161 void serial_cursor_enable(int state);
162 void serial_set_cursor(int y, int x);
163 /** @} */
164
165 /**
166  * @defgroup speaker Speaker functions
167  * @ingroup input
168  * @{
169  */
170 void speaker_enable(u16 freq);
171 void speaker_disable(void);
172 void speaker_tone(u16 freq, unsigned int duration);
173 /** @} */
174
175 /**
176  * @defgroup video Video functions
177  * @ingroup input
178  * @{
179  */
180 int video_console_init(void);
181 void video_console_putchar(unsigned int ch);
182 void video_console_putc(u8 row, u8 col, unsigned int ch);
183 void video_console_clear(void);
184 void video_console_cursor_enable(int state);
185 void video_console_get_cursor(unsigned int *x, unsigned int *y, unsigned int *en);
186 void video_console_set_cursor(unsigned int cursorx, unsigned int cursory);
187 /** @} */
188
189 /* drivers/option.c */
190 int get_option(void *dest, char *name);
191
192 /**
193  * @defgroup console Console functions
194  * @{
195  */
196 void console_init(void);
197 int putchar(unsigned int c);
198 int puts(const char *s);
199 int havekey(void);
200 int getchar(void);
201 int getchar_timeout(int *ms);
202
203 extern int last_putchar;
204
205 struct console_input_driver;
206 struct console_input_driver {
207         struct console_input_driver *next;
208         int (*havekey) (void);
209         int (*getchar) (void);
210 };
211
212 struct console_output_driver;
213 struct console_output_driver {
214         struct console_output_driver *next;
215         void (*putchar) (unsigned int);
216 };
217
218 void console_add_output_driver(struct console_output_driver *out);
219 void console_add_input_driver(struct console_input_driver *in);
220
221 #define havechar havekey
222 /** @} */
223
224 /**
225  * @defgroup ctype Character type functions
226  * @{
227  */
228 int isalnum(int c);
229 int isalpha(int c);
230 int isascii(int c);
231 int isblank(int c);
232 int iscntrl(int c);
233 int isdigit(int c);
234 int isgraph(int c);
235 int islower(int c);
236 int isprint(int c);
237 int ispunct(int c);
238 int isspace(int c);
239 int isupper(int c);
240 int isxdigit(int c);
241 int tolower(int c);
242 int toupper(int c);
243 /** @} */
244
245 /**
246  * @defgroup ipchecksum IP checksum functions
247  * @{
248  */
249 unsigned short ipchksum(const void *ptr, unsigned long nbytes);
250 /** @} */
251
252 /**
253  * @defgroup malloc Memory allocation functions
254  * @{
255  */
256 void free(void *ptr);
257 void *malloc(size_t size);
258 void *calloc(size_t nmemb, size_t size);
259 void *realloc(void *ptr, size_t size);
260 void *memalign(size_t align, size_t size);
261 /** @} */
262
263 /**
264  * @defgroup exec Execution functions
265  * @{
266  */
267 int exec(long addr, int argc, char **argv);
268 /** @} */
269
270 /**
271  * @defgroup misc Misc functions
272  * @{
273  */
274 int bcd2dec(int b);
275 int dec2bcd(int d);
276 int abs(int j);
277 long int labs(long int j);
278 long long int llabs(long long int j);
279 u8 bin2hex(u8 b);
280 u8 hex2bin(u8 h);
281 void fatal(const char *msg) __attribute__ ((noreturn));
282 /** @} */
283
284 /**
285  * @defgroup memory Memory manipulation functions
286  * @{
287  */
288 void *memset(void *s, int c, size_t n);
289 void *memcpy(void *dst, const void *src, size_t n);
290 void *memmove(void *dst, const void *src, size_t n);
291 int memcmp(const void *s1, const void *s2, size_t len);
292 /** @} */
293
294 /**
295  * @defgroup printf Print functions
296  * @{
297  */
298 int snprintf(char *str, size_t size, const char *fmt, ...);
299 int sprintf(char *str, const char *fmt, ...);
300 int vsnprintf(char *str, size_t size, const char *fmt, va_list ap);
301 int vsprintf(char *str, const char *fmt, va_list ap);
302 int printf(const char *fmt, ...);
303 int vprintf(const char *fmt, va_list ap);
304 /** @} */
305
306 /**
307  * @defgroup rand Random number generator functions
308  * @{
309  */
310 int rand_r(unsigned int *seed);
311 int rand(void);
312 void srand(unsigned int seed);
313 /** @} */
314
315 /**
316  * @defgroup hash Hashing functions
317  * @{
318  */
319 #define SHA1_BLOCK_LENGTH       64
320 #define SHA1_DIGEST_LENGTH      20
321 typedef struct {
322         u32 state[5];
323         u64 count;
324         u8 buffer[SHA1_BLOCK_LENGTH];
325 } SHA1_CTX;
326 void SHA1Init(SHA1_CTX *context);
327 void SHA1Transform(u32 state[5], const u8 buffer[SHA1_BLOCK_LENGTH]);
328 void SHA1Update(SHA1_CTX *context, const u8 *data, size_t len);
329 void SHA1Final(u8 digest[SHA1_DIGEST_LENGTH], SHA1_CTX *context);
330 u8 *sha1(const u8 *data, size_t len, u8 *buf);
331 /** @} */
332
333 /**
334  * @defgroup string String functions
335  * @{
336  */
337 size_t strnlen(const char *str, size_t maxlen);
338 size_t strlen(const char *str);
339 int strcmp(const char *s1, const char *s2);
340 int strncmp(const char *s1, const char *s2, size_t maxlen);
341 char *strncpy(char *d, const char *s, size_t n);
342 char *strcpy(char *d, const char *s);
343 char *strncat(char *d, const char *s, size_t n);
344 char *strchr(const char *s, int c);
345 char *strdup(const char *s);
346 char *strstr(const char *h, const char *n);
347 char *strsep(char **stringp, const char *delim);
348 unsigned int strtoul(const char *s, char **nptr, int base);
349
350 /** @} */
351
352 /**
353  * @defgroup time Time functions
354  * @{
355  */
356
357 /** System time structure */
358 struct timeval {
359         time_t tv_sec;       /**< Seconds */
360         suseconds_t tv_usec; /**< Microseconds */
361 };
362
363 int gettimeofday(struct timeval *tv, void *tz);
364 /** @} */
365
366 /**
367  * @defgroup lar LAR functions
368  * @{
369  */
370
371 /** LAR file header */
372 struct LAR {
373         void *start;    /**< Location of the LAR in memory */
374         int cindex;     /**< Next file to return in readlar() */
375         int count;      /**< Number of entries in the header cache */
376         int alloc;      /**< Number of slots in the header cache */
377         int eof;        /**< Last entry in the header cache */
378         void **headers; /**< Pointer to the header cache */
379 };
380
381 /** A structure representing the next LAR entry */
382 struct larent {
383         u8 name[LAR_MAX_PATHLEN]; /**< The name of the next LAR entry */
384 };
385
386 /** A structure containing information about a LAR file */
387 struct larstat {
388         u32 len;           /**< Length of the file in the LAR */
389         u32 reallen;       /**< Length of the uncompressed file */
390         u32 checksum;      /**< Checksum of the uncompressed file */
391         u32 compchecksum;  /**< Checksum of the compressed file in the LAR */
392         u32 offset;        /**< Offset of the file in the LAR */
393         u32 compression;   /**< Compression type of the file */
394         u64 entry;         /**< Entry point of the file for executables */
395         u64 loadaddress;   /**< Address in memory to put the uncompressed file */
396 };
397
398 /** A structure representing a LAR file */
399 struct LFILE {
400         struct LAR *lar;           /**< Pointer to the LAR struct */
401         struct lar_header *header; /**< Pointer to the header struct */
402         u32 size;                  /**< Size of the file */
403         void *start;               /**< Start of the file in memory */
404         u32 offset;                /**< Offset of the file in the LAR */
405 };
406
407 struct LAR *openlar(void *addr);
408 int closelar(struct LAR *lar);
409 struct larent *readlar(struct LAR *lar);
410 void rewindlar(struct LAR *lar);
411 int larstat(struct LAR *lar, const char *path, struct larstat *buf);
412 void *larfptr(struct LAR *lar, const char *filename);
413 int lfverify(struct LAR *lar, const char *filename);
414 struct LFILE *lfopen(struct LAR *lar, const char *filename);
415 int lfread(void *ptr, size_t size, size_t nmemb, struct LFILE *stream);
416
417 #define SEEK_SET 0 /**< The seek offset is absolute. */
418 #define SEEK_CUR 1 /**< The seek offset is against the current position. */
419 #define SEEK_END 2 /**< The seek offset is against the end of the file. */
420
421 int lfseek(struct LFILE *stream, long offset, int whence);
422 int lfclose(struct LFILE *file);
423 /** @} */
424
425 /**
426  * @defgroup info System information functions
427  * This module contains functions that return information about the system
428  * @{
429  */
430
431 int sysinfo_have_multiboot(unsigned long *addr);
432 /** @} */
433
434 /**
435  * @defgroup arch Architecture specific functions
436  * This module contains global architecture specific functions.
437  * All architectures are expected to define these functions.
438  * @{
439  */
440 int get_coreboot_info(struct sysinfo_t *info);
441 int get_multiboot_info(struct sysinfo_t *info);
442
443 void lib_get_sysinfo(void);
444
445 /* Timer functions - defined by each architecture. */
446 unsigned int get_cpu_speed(void);
447 void ndelay(unsigned int n);
448 void udelay(unsigned int n);
449 void mdelay(unsigned int n);
450 void delay(unsigned int n);
451
452 #define abort() halt()    /**< Alias for the halt() function */
453
454 /**
455  * Stop execution and halt the processor (this function does not return).
456  */
457 void halt(void) __attribute__ ((noreturn));
458 /** @} */
459
460 /**
461  * @defgroup readline Readline functions
462  * This interface provides a simple implementation of the standard readline()
463  * and getline() functions. They read a line of input from the console.
464  * @{
465  */
466 char *readline(const char *prompt);
467 int getline(char *buffer, int len);
468 /** @} */
469
470 #endif