Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rafal Jaworowski | a19be78 | 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 | a19be78 | 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 | 685b7f5 | 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 | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 9 | * existing code e.g. operations on strings and similar. |
Rafal Jaworowski | a19be78 | 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 | 363ab7b | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 18 | void putc(const char c) |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 19 | { |
Stefan Roese | 363ab7b | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 20 | ub_putc(c); |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 21 | } |
22 | |||||
Stefan Roese | 363ab7b | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 23 | void puts(const char *s) |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 24 | { |
Stefan Roese | 363ab7b | 2015-11-23 07:00:22 +0100 | [diff] [blame] | 25 | ub_puts(s); |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 26 | } |
27 | |||||
Ingo van Lil | f0f778a | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 28 | void __udelay(unsigned long usec) |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 29 | { |
30 | ub_udelay(usec); | ||||
31 | } | ||||
32 | |||||
Mike Frysinger | 1f0a7e3 | 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 | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 34 | { |
35 | ub_reset(); | ||||
Mike Frysinger | 1f0a7e3 | 2010-12-19 17:16:53 -0500 | [diff] [blame] | 36 | return 0; |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 37 | } |
38 | |||||
Rafal Jaworowski | 35e4e8d | 2008-01-29 17:00:34 +0100 | [diff] [blame] | 39 | void *malloc (size_t len) |
Rafal Jaworowski | a19be78 | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 40 | { |
41 | return NULL; | ||||
42 | } | ||||
Rafal Jaworowski | 35e4e8d | 2008-01-29 17:00:34 +0100 | [diff] [blame] | 43 | |
44 | void hang (void) | ||||
45 | { | ||||
46 | while (1) ; | ||||
47 | } |