This is an automated email from Gerrit. "Hans-Erik Floryd <hans-erik.flo...@rt-labs.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6811
-- gerrit commit b74097670479b9db9fb7f490d12f966c60682d0a Author: Hans-Erik Floryd <hans-erik.flo...@rt-labs.com> Date: Fri Jan 21 12:07:56 2022 +0100 flash/nor/atsame5: add LAN9255 devices Support Microchip LAN9255 devices with embedded SAME53J MCU. Signed-off-by: Hans-Erik Floryd <hans-erik.flo...@rt-labs.com> Change-Id: Ia811c593bf7cf73e588d32873c68eb67c6fafad7 diff --git a/src/flash/nor/atsame5.c b/src/flash/nor/atsame5.c index 9ab0e8113..fbf0fb2ed 100644 --- a/src/flash/nor/atsame5.c +++ b/src/flash/nor/atsame5.c @@ -146,6 +146,9 @@ static const struct samd_part same53_parts[] = { { 0x04, "SAME53J20A", 1024, 256 }, { 0x05, "SAME53J19A", 512, 192 }, { 0x06, "SAME53J18A", 256, 128 }, + { 0x55, "LAN9255/ZMX020", 1024, 256 }, + { 0x56, "LAN9255/ZMX019", 512, 192 }, + { 0x57, "LAN9255/ZMX018", 256, 128 }, }; /* Known SAME54 parts. */ --