Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 Semihalf |
| 4 | * |
| 5 | * Written by: Rafal Jaworowski <raj@semihalf.com> |
| 6 | * |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 7 | * This is is a set of wrappers/stubs that allow to use certain routines from |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 8 | * U-Boot's lib in the standalone app. This way way we can re-use |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 9 | * existing code e.g. operations on strings and similar. |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <api_public.h> |
| 15 | |
| 16 | #include "glue.h" |
| 17 | |
Stefan Roese | 7d9cde1 | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 18 | void putc(const char c) |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 19 | { |
| 20 | ub_putc(c); |
| 21 | } |
| 22 | |
Stefan Roese | 7d9cde1 | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 23 | void puts(const char *s) |
| 24 | { |
| 25 | ub_puts(s); |
| 26 | } |
| 27 | |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 28 | void __udelay(unsigned long usec) |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 29 | { |
| 30 | ub_udelay(usec); |
| 31 | } |
| 32 | |
Mike Frysinger | e0306ca | 2010-12-19 17:16:53 -0500 | [diff] [blame] | 33 | int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 34 | { |
| 35 | ub_reset(); |
Mike Frysinger | e0306ca | 2010-12-19 17:16:53 -0500 | [diff] [blame] | 36 | return 0; |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 37 | } |
| 38 | |
Rafal Jaworowski | 63f732d | 2008-01-29 17:00:34 +0100 | [diff] [blame] | 39 | void *malloc (size_t len) |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 40 | { |
| 41 | return NULL; |
| 42 | } |
Rafal Jaworowski | 63f732d | 2008-01-29 17:00:34 +0100 | [diff] [blame] | 43 | |
| 44 | void hang (void) |
| 45 | { |
| 46 | while (1) ; |
| 47 | } |