glue.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * (C) Copyright 2007 Semihalf
  3. *
  4. * Written by: Rafal Jaworowski <raj@semihalf.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. *
  24. */
  25. /*
  26. * This is the header file for conveniency wrapper routines (API glue)
  27. */
  28. #ifndef _API_GLUE_H_
  29. #define _API_GLUE_H_
  30. #define API_SEARCH_LEN (3 * 1024 * 1024) /* 3MB search range */
  31. extern void *syscall_ptr;
  32. extern uint32_t search_hint;
  33. int syscall(int, int *, ...);
  34. int api_search_sig(struct api_signature **sig);
  35. /*
  36. * ub_ library calls are part of the application, not U-Boot code! They are
  37. * front-end wrappers that are used by the consumer application: they prepare
  38. * arguments for particular syscall and jump to the low level syscall()
  39. */
  40. /* console */
  41. int ub_getc(void);
  42. int ub_tstc(void);
  43. void ub_putc(char c);
  44. void ub_puts(const char *s);
  45. /* system */
  46. void ub_reset(void);
  47. struct sys_info * ub_get_sys_info(void);
  48. /* time */
  49. void ub_udelay(unsigned long);
  50. unsigned long ub_get_timer(unsigned long);
  51. /* env vars */
  52. char * ub_env_get(const char *name);
  53. void ub_env_set(const char *name, char *value);
  54. const char * ub_env_enum(const char *last);
  55. /* devices */
  56. int ub_dev_enum(void);
  57. int ub_dev_open(int handle);
  58. int ub_dev_close(int handle);
  59. int ub_dev_read(int handle, void *buf,
  60. lbasize_t len, lbastart_t start);
  61. int ub_dev_send(int handle, void *buf, int len);
  62. int ub_dev_recv(int handle, void *buf, int len);
  63. struct device_info * ub_dev_get(int);
  64. #endif /* _API_GLUE_H_ */