blob: 15ed489070bd33c77c2663c0ec476110d3416f8d [file] [log] [blame]
Angel Pons57566302020-04-05 13:22:10 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tom Warren64982c502014-01-23 13:37:50 -07002
3#include <console/console.h>
Julius Wernerf0d21ff32014-10-20 13:24:14 -07004#include <soc/sdram.h>
5
Tom Warren64982c502014-01-23 13:37:50 -07006#include "sdram_configs.h"
7
Tom Warren64982c502014-01-23 13:37:50 -07008static struct sdram_params sdram_configs[] = {
Tom Warren96ef1882014-06-10 13:46:48 -07009#include "bct/sdram-unused.inc" /* ram_code = 0000 */
10#include "bct/sdram-hynix-2GB-792.inc" /* ram_code = 0001 */
11#include "bct/sdram-unused.inc" /* ram_code = 0010 */
12#include "bct/sdram-unused.inc" /* ram_code = 0011 */
13#include "bct/sdram-hynix-4GB-792.inc" /* ram_code = 0100 */
14#include "bct/sdram-unused.inc" /* ram_code = 0101 */
15#include "bct/sdram-kingston-2GB-792.inc" /* ram_code = 0110 */
16#include "bct/sdram-unused.inc" /* ram_code = 0111 */
17#include "bct/sdram-unused.inc" /* ram_code = 1000 */
18#include "bct/sdram-unused.inc" /* ram_code = 1001 */
19#include "bct/sdram-unused.inc" /* ram_code = 1010 */
20#include "bct/sdram-unused.inc" /* ram_code = 1011 */
21#include "bct/sdram-unused.inc" /* ram_code = 1100 */
22#include "bct/sdram-unused.inc" /* ram_code = 1101 */
23#include "bct/sdram-unused.inc" /* ram_code = 1110 */
24#include "bct/sdram-unused.inc" /* ram_code = 1111 */
Tom Warren64982c502014-01-23 13:37:50 -070025};
26
27const struct sdram_params *get_sdram_config()
28{
29 uint32_t ramcode = sdram_get_ram_code();
30 /*
31 * If we need to apply some special hacks to RAMCODE mapping (ex, by
32 * board_id), do that now.
33 */
34
35 printk(BIOS_SPEW, "%s: RAMCODE=%d\n", __func__, ramcode);
Patrick Georgi6b688f52021-02-12 13:49:11 +010036 if (ramcode >= ARRAY_SIZE(sdram_configs) ||
Tom Warren64982c502014-01-23 13:37:50 -070037 sdram_configs[ramcode].MemoryType == NvBootMemoryType_Unused) {
38 die("Invalid RAMCODE.");
39 }
40
41 return &sdram_configs[ramcode];
42}