diff options
author | Michael Walle <michael@walle.cc> | 2021-01-08 00:08:57 +0100 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2021-02-08 14:01:15 +0530 |
commit | 4029d356e68c1d7d0061aa34065fd0598f98871f (patch) | |
tree | 711f6cb7c4e6b9f84abf7892a1f6473f874b2e17 /board | |
parent | feed9008b3e60414edb42aaaea76caf6fce88bf9 (diff) | |
download | u-boot-4029d356e68c1d7d0061aa34065fd0598f98871f.tar.gz u-boot-4029d356e68c1d7d0061aa34065fd0598f98871f.tar.xz u-boot-4029d356e68c1d7d0061aa34065fd0598f98871f.zip |
board: sl28: add network variant 1 support
This variant has one network port connected via RGMII and doesn't have
any TSN capabilities out-of-the-box. Instead it has all four SerDes
lanes available for customer use.
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/kontron/sl28/spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/kontron/sl28/spl.c b/board/kontron/sl28/spl.c index fa5829eee0..92f8342c45 100644 --- a/board/kontron/sl28/spl.c +++ b/board/kontron/sl28/spl.c @@ -17,6 +17,8 @@ int board_fit_config_name_match(const char *name) int variant = sl28_variant(); switch (variant) { + case 1: + return strcmp(name, "fsl-ls1028a-kontron-sl28-var1"); case 3: return strcmp(name, "fsl-ls1028a-kontron-sl28-var3"); case 4: |