Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / payloads / libpayload / include / libpayload.h
index cace3ae1da88ca3f156b5d14e7c1d22b9dce10fd..51e42c7ea29689b2d1c7fdd3bbc6689e68c92d07 100644 (file)
@@ -27,7 +27,9 @@
  * SUCH DAMAGE.
  */
 
-/** @mainpage
+/**
+ * @mainpage
+ *
  * @section intro Introduction
  * libpayload is a small BSD-licensed static library (a lightweight
  * implementation of common and useful functions) intended to be used
  * @section example Example
  * Here is an example of a very simple payload:
  * @include sample/hello.c
- *
  */
 
-
 #ifndef _LIBPAYLOAD_H
 #define _LIBPAYLOAD_H
 
+#include <libpayload-config.h>
 #include <stddef.h>
 #include <arch/types.h>
 #include <arch/io.h>
 #include <arch/virtual.h>
 #include <sysinfo.h>
 #include <stdarg.h>
-#include <lar.h>
 #include <pci.h>
+#ifdef CONFIG_LAR
+#include <lar.h>
+#endif
 
 #define MIN(a,b) ((a) < (b) ? (a) : (b))
 #define MAX(a,b) ((a) > (b) ? (a) : (b))
 
 #define RAND_MAX 0x7fffffff
 
-/* Payload information parameters - these are used to pass information
- * to the entity loading the payload
- * Usage:  PAYLOAD_INFO(key, value)
- * Example:  PAYLOAD_INFO(name, "CoreInfo!")
- */
+#define MAX_ARGC_COUNT 10
 
+/*
+ * Payload information parameters - these are used to pass information
+ * to the entity loading the payload.
+ * Usage:   PAYLOAD_INFO(key, value)
+ * Example: PAYLOAD_INFO(name, "CoreInfo!")
+ */
 #define _pstruct(key) __pinfo_ ##key
 #define PAYLOAD_INFO(key, value)                                        \
 static const char _pstruct(key)[]                                        \
@@ -90,9 +95,7 @@ static const char _pstruct(key)[]                                        \
 #define NVRAM_RTC_FREQ_SELECT    10     /**< RTC Update Status Register */
 #define  NVRAM_RTC_UIP           0x80
 
-/** @struct tm
- *  \brief Broken down time structure
- */
+/** Broken down time structure */
 struct tm {
        int tm_sec;   /**< Number of seconds after the minute */
        int tm_min;   /**< Number of minutes after the hour */
@@ -111,11 +114,23 @@ int nvram_updating(void);
 void rtc_read_clock(struct tm *tm);
 /** @} */
 
+/**
+ * @defgroup usb USB functions
+ * @{
+ */
+int usb_initialize(void);
+int usbhid_havechar(void);
+int usbhid_getchar(void);
+/** @} */
+
 /**
  * @defgroup input Device functions
  * @{ @}
  */
 
+extern void (*reset_handler)(void);
+int add_reset_handler(void (*new_handler)(void));
+
 /**
  * @defgroup keyboard Keyboard functions
  * @ingroup input
@@ -125,6 +140,7 @@ void keyboard_init(void);
 int keyboard_havechar(void);
 unsigned char keyboard_get_scancode(void);
 int keyboard_getchar(void);
+int keyboard_set_layout(char *country);
 /** @} */
 
 /**
@@ -133,15 +149,19 @@ int keyboard_getchar(void);
  * @{
  */
 void serial_init(void);
-void serial_putchar(unsigned char c);
+void serial_hardware_init(int port, int speed, int word_bits, int parity, int stop_bits);
+void serial_putchar(unsigned int c);
 int serial_havechar(void);
 int serial_getchar(void);
-
 void serial_clear(void);
 void serial_start_bold(void);
 void serial_end_bold(void);
+void serial_start_reverse(void);
+void serial_end_reverse(void);
 void serial_start_altcharset(void);
 void serial_end_altcharset(void);
+void serial_set_color(short fg, short bg);
+void serial_cursor_enable(int state);
 void serial_set_cursor(int y, int x);
 /** @} */
 
@@ -177,7 +197,7 @@ int get_option(void *dest, char *name);
  * @{
  */
 void console_init(void);
-int putchar(int c);
+int putchar(unsigned int c);
 int puts(const char *s);
 int havekey(void);
 int getchar(void);
@@ -185,11 +205,27 @@ int getchar_timeout(int *ms);
 
 extern int last_putchar;
 
+struct console_input_driver;
+struct console_input_driver {
+       struct console_input_driver *next;
+       int (*havekey) (void);
+       int (*getchar) (void);
+};
+
+struct console_output_driver;
+struct console_output_driver {
+       struct console_output_driver *next;
+       void (*putchar) (unsigned int);
+};
+
+void console_add_output_driver(struct console_output_driver *out);
+void console_add_input_driver(struct console_input_driver *in);
+
 #define havechar havekey
 /** @} */
 
 /**
- * @defgroup ctype Character Type Functions
+ * @defgroup ctype Character type functions
  * @{
  */
 int isalnum(int c);
@@ -210,31 +246,103 @@ int toupper(int c);
 /** @} */
 
 /**
- * @defgroup ipchecksum IP Checksum Functions
+ * @defgroup ipchecksum IP checksum functions
  * @{
  */
 unsigned short ipchksum(const void *ptr, unsigned long nbytes);
 /** @} */
 
 /**
- * @defgroup malloc Memory Allocation Functions
+ * @defgroup malloc Memory allocation functions
  * @{
  */
+#if defined(CONFIG_DEBUG_MALLOC) && !defined(IN_MALLOC_C)
+#define free(p)        \
+       ({ \
+        extern void print_malloc_map(void); \
+        extern void free(void *); \
+        printf("free(%p) called from %s:%s:%d...\n", p, __FILE__, __func__, \
+               __LINE__);\
+        printf("PRE free()\n"); \
+        print_malloc_map(); \
+        free(p); \
+        printf("POST free()\n"); \
+        print_malloc_map(); \
+        })
+#define malloc(s) \
+       ({ \
+        extern void print_malloc_map(void); \
+        extern void *malloc(size_t); \
+        void *ptr; \
+        printf("malloc(%u) called from %s:%s:%d...\n", s, __FILE__, __func__, \
+               __LINE__);\
+        printf("PRE malloc\n"); \
+        print_malloc_map(); \
+        ptr = malloc(s); \
+        printf("POST malloc (ptr = %p)\n", ptr); \
+        print_malloc_map(); \
+        ptr; \
+        })
+#define calloc(n,s) \
+       ({ \
+        extern void print_malloc_map(void); \
+        extern void *calloc(size_t,size_t); \
+        void *ptr; \
+        printf("calloc(%u, %u) called from %s:%s:%d...\n", n, s, __FILE__, \
+               __func__, __LINE__);\
+        printf("PRE calloc\n"); \
+        print_malloc_map(); \
+        ptr = calloc(n,s); \
+        printf("POST calloc (ptr = %p)\n", ptr); \
+        print_malloc_map(); \
+        ptr; \
+        })
+#define realloc(p,s) \
+       ({ \
+        extern void print_malloc_map(void); \
+        extern void *realloc(void*,size_t); \
+        void *ptr; \
+        printf("realloc(%p, %u) called from %s:%s:%d...\n", p, s, __FILE__, \
+               __func__, __LINE__);\
+        printf("PRE realloc\n"); \
+        print_malloc_map(); \
+        ptr = realloc(p,s); \
+        printf("POST realloc (ptr = %p)\n", ptr); \
+        print_malloc_map(); \
+        ptr; \
+        })
+#define memalign(a,s) \
+       ({ \
+        extern void print_malloc_map(void); \
+        extern void *memalign(size_t, size_t); \
+        void *ptr; \
+        printf("memalign(%u, %u) called from %s:%s:%d...\n", a, s, __FILE__, \
+               __func__, __LINE__);\
+        printf("PRE memalign\n"); \
+        print_malloc_map(); \
+        ptr = memalign(a,s); \
+        printf("POST realloc (ptr = %p)\n", ptr); \
+        print_malloc_map(); \
+        ptr; \
+        })
+#else
 void free(void *ptr);
 void *malloc(size_t size);
 void *calloc(size_t nmemb, size_t size);
 void *realloc(void *ptr, size_t size);
+void *memalign(size_t align, size_t size);
+#endif
 /** @} */
 
 /**
- * @defgroup exec Execution Functions
+ * @defgroup exec Execution functions
  * @{
  */
 int exec(long addr, int argc, char **argv);
 /** @} */
 
 /**
- * @defgroup misc Misc Functions
+ * @defgroup misc Misc functions
  * @{
  */
 int bcd2dec(int b);
@@ -244,11 +352,11 @@ long int labs(long int j);
 long long int llabs(long long int j);
 u8 bin2hex(u8 b);
 u8 hex2bin(u8 h);
-void fatal(const charmsg) __attribute__ ((noreturn));
+void fatal(const char *msg) __attribute__ ((noreturn));
 /** @} */
 
 /**
- * @defgroup memory Memory Manipulation Functions
+ * @defgroup memory Memory manipulation functions
  * @{
  */
 void *memset(void *s, int c, size_t n);
@@ -258,7 +366,7 @@ int memcmp(const void *s1, const void *s2, size_t len);
 /** @} */
 
 /**
- * @defgroup printf Print Functions
+ * @defgroup printf Print functions
  * @{
  */
 int snprintf(char *str, size_t size, const char *fmt, ...);
@@ -270,7 +378,7 @@ int vprintf(const char *fmt, va_list ap);
 /** @} */
 
 /**
- * @defgroup rand Random Number Generator Functions
+ * @defgroup rand Random number generator functions
  * @{
  */
 int rand_r(unsigned int *seed);
@@ -279,7 +387,7 @@ void srand(unsigned int seed);
 /** @} */
 
 /**
- * @defgroup hash Hashing Functions
+ * @defgroup hash Hashing functions
  * @{
  */
 #define SHA1_BLOCK_LENGTH      64
@@ -297,7 +405,7 @@ u8 *sha1(const u8 *data, size_t len, u8 *buf);
 /** @} */
 
 /**
- * @defgroup string String Functions
+ * @defgroup string String functions
  * @{
  */
 size_t strnlen(const char *str, size_t maxlen);
@@ -307,20 +415,22 @@ int strncmp(const char *s1, const char *s2, size_t maxlen);
 char *strncpy(char *d, const char *s, size_t n);
 char *strcpy(char *d, const char *s);
 char *strncat(char *d, const char *s, size_t n);
+size_t strlcat(char *d, const char *s, size_t n);
 char *strchr(const char *s, int c);
+char *strrchr(const char *s, int c);
 char *strdup(const char *s);
 char *strstr(const char *h, const char *n);
+char *strsep(char **stringp, const char *delim);
+unsigned int strtoul(const char *s, char **nptr, int base);
+
 /** @} */
 
 /**
- * @defgroup time Time Functions
+ * @defgroup time Time functions
  * @{
  */
 
-/** @struct timeval
- * @brief System time structure
- */
-
+/** System time structure */
 struct timeval {
        time_t tv_sec;       /**< Seconds */
        suseconds_t tv_usec; /**< Microseconds */
@@ -329,16 +439,15 @@ struct timeval {
 int gettimeofday(struct timeval *tv, void *tz);
 /** @} */
 
+#ifdef CONFIG_LAR
 /**
- * @defgroup lar LAR Functions
+ * @defgroup lar LAR functions
  * @{
  */
 
-/** @struct LAR
- * @brief LAR File Header
- */
+/** LAR file header */
 struct LAR {
-       void * start;   /**< Location of the LAR in memory */
+       void *start;    /**< Location of the LAR in memory */
        int cindex;     /**< Next file to return in readlar() */
        int count;      /**< Number of entries in the header cache */
        int alloc;      /**< Number of slots in the header cache */
@@ -346,16 +455,12 @@ struct LAR {
        void **headers; /**< Pointer to the header cache */
 };
 
-/** @struct larent
- * @brief A structure representing the next LAR entry
- */
+/** A structure representing the next LAR entry */
 struct larent {
        u8 name[LAR_MAX_PATHLEN]; /**< The name of the next LAR entry */
 };
 
-/** @struct larstat
- * @brief A structure containing information about a LAR file
- */
+/** A structure containing information about a LAR file */
 struct larstat {
        u32 len;           /**< Length of the file in the LAR */
        u32 reallen;       /**< Length of the uncompressed file */
@@ -367,10 +472,7 @@ struct larstat {
        u64 loadaddress;   /**< Address in memory to put the uncompressed file */
 };
 
-/** @struct LFILE
- * @brief A structure representing a LAR file
- */
-
+/** A structure representing a LAR file */
 struct LFILE {
        struct LAR *lar;           /**< Pointer to the LAR struct */
        struct lar_header *header; /**< Pointer to the header struct */
@@ -386,24 +488,35 @@ void rewindlar(struct LAR *lar);
 int larstat(struct LAR *lar, const char *path, struct larstat *buf);
 void *larfptr(struct LAR *lar, const char *filename);
 int lfverify(struct LAR *lar, const char *filename);
-struct LFILE * lfopen(struct LAR *lar, const char *filename);
+struct LFILE *lfopen(struct LAR *lar, const char *filename);
 int lfread(void *ptr, size_t size, size_t nmemb, struct LFILE *stream);
 
-#define SEEK_SET 0 /**@def The seek offset is absolute  */
-#define SEEK_CUR 1 /**@def The seek offset is against the current position */
-#define SEEK_END 2 /**@def The see offset is against the end of the file */
+#define SEEK_SET 0 /**< The seek offset is absolute. */
+#define SEEK_CUR 1 /**< The seek offset is against the current position. */
+#define SEEK_END 2 /**< The seek offset is against the end of the file. */
 
 int lfseek(struct LFILE *stream, long offset, int whence);
 int lfclose(struct LFILE *file);
 /** @} */
+#endif
+
+/**
+ * @defgroup info System information functions
+ * This module contains functions that return information about the system
+ * @{
+ */
+
+int sysinfo_have_multiboot(unsigned long *addr);
+/** @} */
 
 /**
- * @defgroup arch Architecture Specific Functions
- * This modules contains global architecture specific functions.
+ * @defgroup arch Architecture specific functions
+ * This module contains global architecture specific functions.
  * All architectures are expected to define these functions.
  * @{
  */
 int get_coreboot_info(struct sysinfo_t *info);
+int get_multiboot_info(struct sysinfo_t *info);
 
 void lib_get_sysinfo(void);
 
@@ -417,20 +530,18 @@ void delay(unsigned int n);
 #define abort() halt()    /**< Alias for the halt() function */
 
 /**
- * Stops executions and halts the processor.  This function does
- * not return.
+ * Stop execution and halt the processor (this function does not return).
  */
 void halt(void) __attribute__ ((noreturn));
 /** @} */
 
 /**
- * @defgroup readline Readline Functions
- * This interface provides a simple implementation of the standard
- * readline and getline functions.  They are suitable for reading a
- * line of input from the console.
+ * @defgroup readline Readline functions
+ * This interface provides a simple implementation of the standard readline()
+ * and getline() functions. They read a line of input from the console.
  * @{
  */
-char * readline(const char * prompt);
+char *readline(const char *prompt);
 int getline(char *buffer, int len);
 /** @} */