2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-01-09 18:39:36 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007 Semihalf
|
|
|
|
*
|
|
|
|
* Written by: Rafal Jaworowski <raj@semihalf.com>
|
|
|
|
*
|
|
|
|
* This is is a set of wrappers/stubs that allow to use certain routines from
|
2010-04-13 03:28:05 +00:00
|
|
|
* U-Boot's lib in the standalone app. This way way we can re-use
|
2008-01-09 18:39:36 +00:00
|
|
|
* existing code e.g. operations on strings and similar.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <api_public.h>
|
|
|
|
|
|
|
|
#include "glue.h"
|
|
|
|
|
2015-11-23 06:00:22 +00:00
|
|
|
void putc(const char c)
|
2008-01-09 18:39:36 +00:00
|
|
|
{
|
2015-11-23 06:00:22 +00:00
|
|
|
ub_putc(c);
|
2008-01-09 18:39:36 +00:00
|
|
|
}
|
|
|
|
|
2015-11-23 06:00:22 +00:00
|
|
|
void puts(const char *s)
|
2008-01-09 18:39:36 +00:00
|
|
|
{
|
2015-11-23 06:00:22 +00:00
|
|
|
ub_puts(s);
|
2008-01-09 18:39:36 +00:00
|
|
|
}
|
|
|
|
|
2009-11-24 13:09:21 +00:00
|
|
|
void __udelay(unsigned long usec)
|
2008-01-09 18:39:36 +00:00
|
|
|
{
|
|
|
|
ub_udelay(usec);
|
|
|
|
}
|
|
|
|
|
2010-12-19 22:16:53 +00:00
|
|
|
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2008-01-09 18:39:36 +00:00
|
|
|
{
|
|
|
|
ub_reset();
|
2010-12-19 22:16:53 +00:00
|
|
|
return 0;
|
2008-01-09 18:39:36 +00:00
|
|
|
}
|
|
|
|
|
2008-01-29 16:00:34 +00:00
|
|
|
void *malloc (size_t len)
|
2008-01-09 18:39:36 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-01-29 16:00:34 +00:00
|
|
|
|
|
|
|
void hang (void)
|
|
|
|
{
|
|
|
|
while (1) ;
|
|
|
|
}
|