svn commit: r245953 - head/sys/dev/nand

Ian Lepore ian at FreeBSD.org
Sun Jan 27 00:16:37 UTC 2013


Author: ian
Date: Sun Jan 27 00:16:36 2013
New Revision: 245953
URL: http://svnweb.freebsd.org/changeset/base/245953

Log:
  Add the chip used in recent GlobalScale Technologies *Plug computers
  
  Approved by:	cognet (mentor)

Modified:
  head/sys/dev/nand/nand_id.c

Modified: head/sys/dev/nand/nand_id.c
==============================================================================
--- head/sys/dev/nand/nand_id.c	Sat Jan 26 22:08:21 2013	(r245952)
+++ head/sys/dev/nand/nand_id.c	Sun Jan 27 00:16:36 2013	(r245953)
@@ -37,6 +37,8 @@ struct nand_params nand_ids[] = {
 	    0x20, 0x200, 0x10, 0x20, 0 },
 	{ { NAND_MAN_SAMSUNG, 0xd3 }, "Samsung NAND 1GiB 3,3V 8-bit",
 	    0x400, 0x800, 0x40, 0x40, 0 },
+	{ { NAND_MAN_SAMSUNG, 0xdc }, "Samsung NAND 512MiB 3,3V 8-bit",
+	    0x200, 0x800, 0x40, 0x40, 0 },
 	{ { NAND_MAN_HYNIX, 0x76 }, "Hynix NAND 64MiB 3,3V 8-bit",
 	    0x40, 0x200, 0x10, 0x20, 0 },
 	{ { NAND_MAN_HYNIX, 0xdc }, "Hynix NAND 512MiB 3,3V 8-bit",


More information about the svn-src-head mailing list