avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
18
u-boot/drivers/ram/Kconfig
Normal file
18
u-boot/drivers/ram/Kconfig
Normal file
@@ -0,0 +1,18 @@
|
||||
config RAM
|
||||
bool "Enable RAM drivers using Driver Model"
|
||||
depends on DM
|
||||
help
|
||||
This allows drivers to be provided for SDRAM and other RAM
|
||||
controllers and their type to be specified in the board's device
|
||||
tree. Generally some parameters are required to set up the RAM and
|
||||
the RAM size can either be statically defined or dynamically
|
||||
detected.
|
||||
|
||||
config SPL_RAM
|
||||
bool "Enable RAM support in SPL"
|
||||
depends on RAM
|
||||
help
|
||||
The RAM subsystem adds a small amount of overhead to the image.
|
||||
If this is acceptable and you have a need to use RAM drivers in
|
||||
SPL, enable this option. It might provide a cleaner interface to
|
||||
setting up RAM (e.g. SDRAM / DDR) within SPL.
|
||||
8
u-boot/drivers/ram/Makefile
Normal file
8
u-boot/drivers/ram/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# Copyright (c) 2015 Google, Inc
|
||||
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
obj-$(CONFIG_RAM) += ram-uclass.o
|
||||
obj-$(CONFIG_SANDBOX) += sandbox_ram.o
|
||||
28
u-boot/drivers/ram/ram-uclass.c
Normal file
28
u-boot/drivers/ram/ram-uclass.c
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Copyright (C) 2015 Google, Inc
|
||||
* Written by Simon Glass <sjg@chromium.org>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <ram.h>
|
||||
#include <dm.h>
|
||||
#include <errno.h>
|
||||
#include <dm/lists.h>
|
||||
#include <dm/root.h>
|
||||
|
||||
int ram_get_info(struct udevice *dev, struct ram_info *info)
|
||||
{
|
||||
struct ram_ops *ops = ram_get_ops(dev);
|
||||
|
||||
if (!ops->get_info)
|
||||
return -ENOSYS;
|
||||
|
||||
return ops->get_info(dev, info);
|
||||
}
|
||||
|
||||
UCLASS_DRIVER(ram) = {
|
||||
.id = UCLASS_RAM,
|
||||
.name = "ram",
|
||||
};
|
||||
38
u-boot/drivers/ram/sandbox_ram.c
Normal file
38
u-boot/drivers/ram/sandbox_ram.c
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Copyright (c) 2015 Google, Inc
|
||||
* Written by Simon Glass <sjg@chromium.org>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <dm.h>
|
||||
#include <errno.h>
|
||||
#include <ram.h>
|
||||
#include <asm/test.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
static int sandbox_get_info(struct udevice *dev, struct ram_info *info)
|
||||
{
|
||||
info->base = 0;
|
||||
info->size = gd->ram_size;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct ram_ops sandbox_ram_ops = {
|
||||
.get_info = sandbox_get_info,
|
||||
};
|
||||
|
||||
static const struct udevice_id sandbox_ram_ids[] = {
|
||||
{ .compatible = "sandbox,ram" },
|
||||
{ }
|
||||
};
|
||||
|
||||
U_BOOT_DRIVER(warm_ram_sandbox) = {
|
||||
.name = "ram_sandbox",
|
||||
.id = UCLASS_RAM,
|
||||
.of_match = sandbox_ram_ids,
|
||||
.ops = &sandbox_ram_ops,
|
||||
};
|
||||
Reference in New Issue
Block a user