diff options
author | Tim Harvey <tharvey@gateworks.com> | 2019-02-04 13:10:55 -0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-02-15 22:01:15 +0100 |
commit | 00606b51cca6057b4df2b52c3572f476307257eb (patch) | |
tree | 6a7e0c97effe73f20a0409bcf10fdfea2ac03429 /board/gateworks/gw_ventana/eeprom.c | |
parent | 988916ad1bf1e9fc98c848088d364dd8c3827f03 (diff) |
imx: ventana: add support for GW5907
The GW5907 is a small single board computer based on the i.MX6DL SoC
with the following peripheral set:
- DDR3 memory (512MB default)
- 1x GigE (i.MX6 FEC)
- Gateworks System Controller
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 e697b8ca09..3aaf195b65 100644 --- a/board/gateworks/gw_ventana/eeprom.c +++ b/board/gateworks/gw_ventana/eeprom.c @@ -105,6 +105,8 @@ read_eeprom(int bus, struct ventana_board_info *info) type = GW5905; else if (info->model[4] == '0' && info->model[5] == '6') type = GW5906; + else if (info->model[4] == '0' && info->model[5] == '7') + type = GW5907; break; } return type; |