diff options
author | Tim Harvey <tharvey@gateworks.com> | 2019-02-04 13:10:56 -0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-02-15 22:01:15 +0100 |
commit | ebe07ef754937ea57c828fea32b1b42b9e797882 (patch) | |
tree | 2a02b294f1100adf6804c7989cd9661ebc4fe0fd /board/gateworks/gw_ventana/eeprom.c | |
parent | 00606b51cca6057b4df2b52c3572f476307257eb (diff) |
imx: ventana: add support for GW5908
The GW5908 is a small single board computer based on the i.MX6DL SoC
with the same peripheral set as the GW530x but with 1GiB density DRAM
(64bit 512MiB).
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board/gateworks/gw_ventana/eeprom.c')
-rw-r--r-- | board/gateworks/gw_ventana/eeprom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/gateworks/gw_ventana/eeprom.c b/board/gateworks/gw_ventana/eeprom.c index 3aaf195b65..85802141dd 100644 --- a/board/gateworks/gw_ventana/eeprom.c +++ b/board/gateworks/gw_ventana/eeprom.c @@ -107,6 +107,8 @@ read_eeprom(int bus, struct ventana_board_info *info) type = GW5906; else if (info->model[4] == '0' && info->model[5] == '7') type = GW5907; + else if (info->model[4] == '0' && info->model[5] == '8') + type = GW5908; break; } return type; |