libgenwrap.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. * This is is a set of wrappers/stubs that allow to use certain routines from
  26. * U-Boot's lib_generic in the standalone app. This way way we can re-use
  27. * existing code e.g. operations on strings and similar.
  28. *
  29. */
  30. #include <common.h>
  31. #include <linux/types.h>
  32. #include <api_public.h>
  33. #include "glue.h"
  34. /*
  35. * printf() and vprintf() are stolen from u-boot/common/console.c
  36. */
  37. void printf (const char *fmt, ...)
  38. {
  39. va_list args;
  40. uint i;
  41. char printbuffer[256];
  42. va_start (args, fmt);
  43. /* For this to work, printbuffer must be larger than
  44. * anything we ever want to print.
  45. */
  46. i = vsprintf (printbuffer, fmt, args);
  47. va_end (args);
  48. /* Print the string */
  49. ub_puts (printbuffer);
  50. }
  51. void vprintf (const char *fmt, va_list args)
  52. {
  53. uint i;
  54. char printbuffer[256];
  55. /* For this to work, printbuffer must be larger than
  56. * anything we ever want to print.
  57. */
  58. i = vsprintf (printbuffer, fmt, args);
  59. /* Print the string */
  60. ub_puts (printbuffer);
  61. }
  62. void putc (const char c)
  63. {
  64. ub_putc(c);
  65. }
  66. void udelay(unsigned long usec)
  67. {
  68. ub_udelay(usec);
  69. }
  70. void do_reset (void)
  71. {
  72. ub_reset();
  73. }
  74. void *malloc(size_t len)
  75. {
  76. return NULL;
  77. }