[flashrom] [PATCH v3] Add IT8212F as programmer

Kyösti Mälkki kyosti.malkki at gmail.com
Thu Sep 6 10:05:52 CEST 2012


This PCI PATA controller can use 3V parallel flash upto 128kB.

My card was identified as:
  PCI 1283:8212, subsystem 1283:0001.

and labelled as:
  Innovision Multimedia LTD.
  EIO ATA133 RAID
  (DM-8401 Ver A)

This particular card did not require setting of any GPIO signals to
enable flash writing. My card has Pm39LV512 in PLCC32 package without
socket.

Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>

diff --git a/Makefile b/Makefile
index 9309ce5..ccc8305 100644
--- a/Makefile
+++ b/Makefile
@@ -198,6 +198,11 @@ UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
 else
 override CONFIG_SATAMV = no
 endif
+ifeq ($(CONFIG_IT8212), yes)
+UNSUPPORTED_FEATURES += CONFIG_IT8212=yes
+else
+override CONFIG_IT8212 = no
+endif
 endif
 
 ifeq ($(TARGET_OS), libpayload)
@@ -370,6 +375,9 @@ CONFIG_SATAMV ?= yes
 # Enable Linux spidev interface by default. We disable it on non-Linux targets.
 CONFIG_LINUX_SPI ?= yes
 
+# Always enable ITE IT8212F PATA controllers for now.
+CONFIG_IT8212 ?= yes
+
 # Disable wiki printing by default. It is only useful if you have wiki access.
 CONFIG_PRINT_WIKI ?= no
 
@@ -532,6 +540,12 @@ FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "LINUX_SPI_SUPPORT := yes" .features
 PROGRAMMER_OBJS += linux_spi.o
 endif
 
+ifeq ($(CONFIG_IT8212), yes)
+FEATURE_CFLAGS += -D'CONFIG_IT8212=1'
+PROGRAMMER_OBJS += it8212.o
+NEED_PCI := yes
+endif
+
 ifeq ($(NEED_SERIAL), yes)
 LIB_OBJS += serial.o
 endif
diff --git a/flashrom.8 b/flashrom.8
index bf671c2..8bc8a68 100644
--- a/flashrom.8
+++ b/flashrom.8
@@ -217,6 +217,8 @@ bitbanging adapter)
 .sp
 .BR "* linux_spi" " (for SPI flash ROMs accessible via /dev/spidevX.Y on Linux)"
 .sp
+.BR "* it8212" " (for flash ROMs on ITE IT8212F PATA/RAID controller)"
+.sp
 Some programmers have optional or mandatory parameters which are described
 in detail in the
 .B PROGRAMMER SPECIFIC INFO
@@ -532,7 +534,7 @@ is an 8-bit hexadecimal value.
 .SS
 .BR "nic3com" , " nicrealtek" , " nicnatsemi" , " nicintel\
 " , " nicintel_spi" , " gfxnvidia" , " ogp_spi" , " drkaiser" , " satasii\
-" , " satamv" ", and " atahpt " programmers
+" , " satamv" ", " atahpt " and " it8212 " programmers
 These programmers have an option to specify the PCI address of the card
 your want to use, which must be specified if more than one card supported
 by the selected programmer is installed in your system. The syntax is
@@ -765,7 +767,7 @@ need PCI configuration space read access and raw I/O port access.
 .B atahpt
 needs PCI configuration space access and raw I/O port access.
 .sp
-.BR gfxnvidia " and " drkaiser
+.BR gfxnvidia ", " drkaiser " and " it8212
 need PCI configuration space access and raw memory access.
 .sp
 .B rayer_spi
diff --git a/flashrom.c b/flashrom.c
index fdc5412..d0548b2 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -262,6 +262,16 @@ const struct programmer_entry programmer_table[] = {
 	},
 #endif
 
+#if CONFIG_IT8212 == 1
+	{
+		.name			= "it8212",
+		.init			= it8212_init,
+		.map_flash_region	= fallback_map,
+		.unmap_flash_region	= fallback_unmap,
+		.delay			= internal_delay,
+	},
+#endif
+
 	{0}, /* This entry corresponds to PROGRAMMER_INVALID. */
 };
 
diff --git a/it8212.c b/it8212.c
new file mode 100644
index 0000000..dc01a31
--- /dev/null
+++ b/it8212.c
@@ -0,0 +1,108 @@
+/*
+ * This file is part of the flashrom project.
+ *
+ * Copyright (C) 2011 Carl-Daniel Hailfinger
+ * Copyright (C) 2012 Kyösti Mälkki <kyosti.malkki at gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#include <stdlib.h>
+#include "flash.h"
+#include "programmer.h"
+#include "hwaccess.h"
+
+static uint8_t *it8212_bar;
+static uint8_t it8212_rom_enable = 0;
+
+#define PCI_VENDOR_ID_ITE 0x1283
+
+const struct pcidev_status ata_it82[] = {
+	{PCI_VENDOR_ID_ITE, 0x8212, OK, "ITE", "8212F PATA RAID"},
+	{},
+};
+
+#define IT8212_MEMMAP_SIZE (128 * 1024)
+#define IT8212_MEMMAP_MASK (IT8212_MEMMAP_SIZE - 1)
+
+static void it8212_chip_writeb(const struct flashctx *flash, uint8_t val,
+				 chipaddr addr);
+static uint8_t it8212_chip_readb(const struct flashctx *flash,
+				   const chipaddr addr);
+static const struct par_programmer par_programmer_it8212 = {
+		.chip_readb		= it8212_chip_readb,
+		.chip_readw		= fallback_chip_readw,
+		.chip_readl		= fallback_chip_readl,
+		.chip_readn		= fallback_chip_readn,
+		.chip_writeb		= it8212_chip_writeb,
+		.chip_writew		= fallback_chip_writew,
+		.chip_writel		= fallback_chip_writel,
+		.chip_writen		= fallback_chip_writen,
+};
+
+static int it8212_shutdown(void *data)
+{
+	if (! it8212_rom_enable) {
+		uintptr_t addr = pci_read_long(pcidev_dev, PCI_ROM_ADDRESS);
+		pci_write_long(pcidev_dev, PCI_ROM_ADDRESS, addr & ~0x01);
+	}
+	physunmap(it8212_bar, IT8212_MEMMAP_SIZE);
+	pci_cleanup(pacc);
+	return 0;
+}
+
+int it8212_init(void)
+{
+	uintptr_t addr;
+
+	if (rget_io_perms())
+		return 1;
+
+	/* No need to check for errors, pcidev_init() will not return in case
+	 * of errors.
+	 */
+	addr = pcidev_init(PCI_ROM_ADDRESS, ata_it82);
+
+	it8212_bar = physmap("IT8212F flash", addr, IT8212_MEMMAP_SIZE);
+	if (it8212_bar == ERROR_PTR)
+		goto error_out_unmap;
+	if (register_shutdown(it8212_shutdown, NULL))
+		return 1;
+
+	/* To restore ROM BAR enable once we are done. */
+	it8212_rom_enable = addr & 0x01;
+	if (! it8212_rom_enable)
+		pci_write_long(pcidev_dev, PCI_ROM_ADDRESS, addr | 0x01);
+
+	max_rom_decode.parallel = IT8212_MEMMAP_SIZE;
+	register_par_programmer(&par_programmer_it8212, BUS_PARALLEL);
+	return 0;
+
+error_out_unmap:
+	physunmap(it8212_bar, IT8212_MEMMAP_SIZE);
+	pci_cleanup(pacc);
+	return 1;
+}
+
+static void it8212_chip_writeb(const struct flashctx *flash, uint8_t val,
+				 chipaddr addr)
+{
+	pci_mmio_writeb(val, it8212_bar + (addr & IT8212_MEMMAP_MASK));
+}
+
+static uint8_t it8212_chip_readb(const struct flashctx *flash,
+				   const chipaddr addr)
+{
+	return pci_mmio_readb(it8212_bar + (addr & IT8212_MEMMAP_MASK));
+}
diff --git a/print.c b/print.c
index 582a49e..32219bf 100644
--- a/print.c
+++ b/print.c
@@ -547,6 +547,11 @@ void print_supported(void)
 	       programmer_table[PROGRAMMER_LINUX_SPI].name);
 	msg_ginfo("Device files /dev/spidev*.*\n");
 #endif
+#if CONFIG_IT8212 == 1
+	msg_ginfo("\nSupported devices for the %s programmer:\n",
+	       programmer_table[PROGRAMMER_IT8212].name);
+	print_supported_pcidevs(ata_it82);
+#endif
 }
 
 #if CONFIG_INTERNAL == 1
diff --git a/print_wiki.c b/print_wiki.c
index 617053c..c7dbb71 100644
--- a/print_wiki.c
+++ b/print_wiki.c
@@ -367,6 +367,9 @@ void print_supported_wiki(void)
 #if CONFIG_SATAMV == 1
 	print_supported_pcidevs_wiki(satas_mv);
 #endif
+#if CONFIG_IT8212 == 1
+	print_supported_pcidevs_wiki(ata_it82);
+#endif
 	printf("\n|}\n\n|}\n");
 }
 
diff --git a/programmer.h b/programmer.h
index 51b9c40..436d3d0 100644
--- a/programmer.h
+++ b/programmer.h
@@ -87,6 +87,9 @@ enum programmer {
 #if CONFIG_LINUX_SPI == 1
 	PROGRAMMER_LINUX_SPI,
 #endif
+#if CONFIG_IT8212 == 1
+	PROGRAMMER_IT8212,
+#endif
 	PROGRAMMER_INVALID /* This must always be the last entry. */
 };
 
@@ -457,6 +460,12 @@ int buspirate_spi_init(void);
 int linux_spi_init(void);
 #endif
 
+/* it8212.c */
+#if CONFIG_IT8212 == 1
+int it8212_init(void);
+extern const struct pcidev_status ata_it82[];
+#endif
+
 /* dediprog.c */
 #if CONFIG_DEDIPROG == 1
 int dediprog_init(void);








More information about the flashrom mailing list