blob: 8751e536674301a534190998aed84e2a7c591910 [file] [log] [blame]
Julius Werner329031f2016-08-19 16:35:22 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright 2016 Rockchip Inc.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15
16sdram-params :=
Shasha Zhaoc99526c2016-11-17 12:42:51 +080017sdram-params += sdram-lpddr3-hynix-4GB
18sdram-params += sdram-lpddr3-samsung-2GB-24EB
19sdram-params += sdram-lpddr3-micron-2GB
20sdram-params += sdram-lpddr3-samsung-4GB-04EB
21sdram-params += sdram-lpddr3-micron-4GB
Julius Werner329031f2016-08-19 16:35:22 -070022
23$(foreach params,$(sdram-params), \
24 $(eval cbfs-files-y += $(params)) \
25 $(eval $(params)-file := $(params).c:struct) \
26 $(eval $(params)-type := struct) \
27 $(eval $(params)-compression := $(CBFS_COMPRESS_FLAG)) \
28)