mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 23:06:15 +00:00

As part of bringing the master branch back in to next, we need to allow for all of these changes to exist here. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
36 lines
698 B
C
36 lines
698 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2022 Marek Vasut <marex@denx.de>
|
|
*/
|
|
|
|
#include <asm/io.h>
|
|
#include <asm-generic/gpio.h>
|
|
|
|
#include "lpddr4_timing.h"
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
u8 dh_get_memcfg(void)
|
|
{
|
|
struct gpio_desc gpio[4];
|
|
u8 memcfg = 0;
|
|
ofnode node;
|
|
int i, ret;
|
|
|
|
node = ofnode_path("/config");
|
|
if (!ofnode_valid(node)) {
|
|
printf("%s: no /config node?\n", __func__);
|
|
return BIT(2) | BIT(0);
|
|
}
|
|
|
|
ret = gpio_request_list_by_name_nodev(node,
|
|
"dh,ram-coding-gpios",
|
|
gpio, ARRAY_SIZE(gpio),
|
|
GPIOD_IS_IN);
|
|
for (i = 0; i < ret; i++)
|
|
memcfg |= !!dm_gpio_get_value(&(gpio[i])) << i;
|
|
|
|
gpio_free_list_nodev(gpio, ret);
|
|
|
|
return memcfg;
|
|
}
|