summaryrefslogtreecommitdiffstats
path: root/util/inteltool/ahci.c
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2016-06-08 22:39:22 +0800
committerPatrick Georgi <pgeorgi@google.com>2016-09-21 14:16:55 +0200
commit904538bcc153ee889e6ba26dec7dd5d3b8feeef1 (patch)
tree7e3825fc95afb55f8ee5a196ee7ac47be9f2b203 /util/inteltool/ahci.c
parent1ba34323010f075e21ed11d9cf2c97e688441676 (diff)
downloadcoreboot-904538bcc153ee889e6ba26dec7dd5d3b8feeef1.tar.gz
coreboot-904538bcc153ee889e6ba26dec7dd5d3b8feeef1.tar.bz2
coreboot-904538bcc153ee889e6ba26dec7dd5d3b8feeef1.zip
inteltool: add --ahci for printing AHCI registers
According to datasheets for Intel ICH/PCH, it works for chipsets from ICH7 to 9-series PCH, with PCI device address D31:F2. Change-Id: If1ddd7208108bda949b5a94894a7bf9e8bfe1e5f Signed-off-by: Iru Cai <mytbk920423@gmail.com> Reviewed-on: https://review.coreboot.org/15106 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/inteltool/ahci.c')
-rw-r--r--util/inteltool/ahci.c77
1 files changed, 77 insertions, 0 deletions
diff --git a/util/inteltool/ahci.c b/util/inteltool/ahci.c
new file mode 100644
index 000000000000..92b55def1ca9
--- /dev/null
+++ b/util/inteltool/ahci.c
@@ -0,0 +1,77 @@
+/*
+ * ahci.c: dump AHCI registers
+ *
+ * Copyright (C) 2016 Iru Cai
+ *
+ * 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.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <inttypes.h>
+#include "inteltool.h"
+
+#define NUM_SATA_PORTS 6
+#define MMIO_SIZE 0x400
+
+static const char *ghc_regs[] = {
+ "CAP", "GHC", "IS", "PI",
+ "VS", "CCC_CTL", "CCC_PORTS", "EM_LOC",
+ "EM_CTL", "CAP2", "BOHC"
+};
+
+static const char *port_ctl_regs[] = {
+ "PxCLB", "PxCLBU", "PxFB", "PxFBU",
+ "PxIS", "PxIE", "PxCMD", "Reserved",
+ "PxTFD", "PxSIG", "PxSSTS", "PxSCTL",
+ "PxSERR", "PxSACT", "PxCI", "PxSNTF",
+ "PxFBS", "PxDEVSLP", "Reserved"
+};
+
+#define NUM_GHC (sizeof(ghc_regs)/sizeof(ghc_regs[0]))
+#define NUM_PORTCTL (sizeof(port_ctl_regs)/sizeof(port_ctl_regs[0]))
+
+int print_ahci(struct pci_dev *ahci)
+{
+ uint64_t mmio_phys;
+ uint8_t *mmio;
+ uint32_t i, j;
+ if (!ahci) {
+ puts("No SATA device found");
+ return 0;
+ }
+ printf("\n============= AHCI Registers ==============\n\n");
+ mmio_phys = ahci->base_addr[5] & ~0x7ULL;
+ printf("ABAR = 0x%08llx (MEM)\n\n", (unsigned long long)mmio_phys);
+ mmio = map_physical(mmio_phys, MMIO_SIZE);
+ if (mmio == NULL) {
+ perror("Error mapping MMIO");
+ exit(1);
+ }
+
+ puts("Generic Host Control Registers:");
+ for (i = 0; i < 0x100; i += 4) {
+ printf("0x%02x: 0x%08x (%s)\n", i, *(uint32_t *)(mmio + i),
+ (i / 4 < NUM_GHC) ? ghc_regs[i / 4]:"Reserved");
+ }
+
+ for (i = 0; i < NUM_SATA_PORTS; i++) {
+ printf("\nPort %d Control Registers:\n", i);
+ uint8_t *mmio_port = mmio + 0x100 + i * 0x80;
+ for (j = 0; j < 0x80; j += 4) {
+ printf("0x%03x: 0x%08x (%s)\n", 0x100+i*0x80+j, *(uint32_t *)(mmio_port + j),
+ (j / 4 < NUM_PORTCTL) ? port_ctl_regs[j / 4]:"Reserved");
+ }
+ }
+
+ unmap_physical((void *)mmio, MMIO_SIZE);
+ return 0;
+}