u-boot/drivers/misc/cbmem_console.c
Tom Rini d678a59d2d Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay
Ethernet"' I failed to notice that b4 noticed it was based on next and
so took that as the base commit and merged that part of next to master.

This reverts commit c8ffd1356d, reversing
changes made to 2ee6f3a5f7.

Reported-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-19 08:16:36 -06:00

64 lines
1.2 KiB
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
*/
#include <common.h>
#include <console.h>
#include <asm/cb_sysinfo.h>
void cbmemc_putc(struct stdio_dev *dev, char data)
{
const struct sysinfo_t *sysinfo = cb_get_sysinfo();
struct cbmem_console *cons;
uint pos, flags;
if (!sysinfo)
return;
cons = sysinfo->cbmem_cons;
if (!cons)
return;
pos = cons->cursor & CBMC_CURSOR_MASK;
/* preserve the overflow flag if present */
flags = cons->cursor & ~CBMC_CURSOR_MASK;
cons->body[pos++] = data;
/*
* Deal with overflow - the flag may be cleared by another program which
* reads the buffer out later, e.g. Linux
*/
if (pos >= cons->size) {
pos = 0;
flags |= CBMC_OVERFLOW;
}
cons->cursor = flags | pos;
}
void cbmemc_puts(struct stdio_dev *dev, const char *str)
{
char c;
while ((c = *str++) != 0)
cbmemc_putc(dev, c);
}
int cbmemc_init(void)
{
int rc;
struct stdio_dev cons_dev;
memset(&cons_dev, 0, sizeof(cons_dev));
strcpy(cons_dev.name, "cbmem");
cons_dev.flags = DEV_FLAGS_OUTPUT; /* Output only */
cons_dev.putc = cbmemc_putc;
cons_dev.puts = cbmemc_puts;
rc = stdio_register(&cons_dev);
return (rc == 0) ? 1 : rc;
}