2016-06-08 16:39:22 +02:00
|
|
|
/*
|
|
|
|
* ahci.c: dump AHCI registers
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Iru Cai
|
2017-03-30 17:47:24 +02:00
|
|
|
* Copyright (C) 2017 secunet Security Networks AG
|
2016-06-08 16:39:22 +02:00
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
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]))
|
|
|
|
|
2017-03-31 13:12:49 +02:00
|
|
|
#define MMIO(offset) (*(uint32_t *)(mmio + offset))
|
|
|
|
#define MMIO_PORT(offset) (*(uint32_t *)(mmio_port + offset))
|
|
|
|
|
|
|
|
static void print_port(const uint8_t *const mmio, size_t port)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
printf("\nPort %zu Control Registers:\n", port);
|
|
|
|
const uint8_t *const mmio_port = mmio + 0x100 + port * 0x80;
|
|
|
|
for (i = 0; i < 0x80; i += 4) {
|
|
|
|
if (i / 4 < NUM_PORTCTL) {
|
|
|
|
printf("0x%03zx: 0x%08x (%s)\n",
|
|
|
|
(size_t)(mmio_port - mmio) + i,
|
|
|
|
MMIO_PORT(i), port_ctl_regs[i / 4]);
|
|
|
|
} else if (MMIO_PORT(i)) {
|
|
|
|
printf("0x%03zx: 0x%08x (Reserved)\n",
|
|
|
|
(size_t)(mmio_port - mmio) + i, MMIO_PORT(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-08 16:39:22 +02:00
|
|
|
int print_ahci(struct pci_dev *ahci)
|
|
|
|
{
|
2020-03-13 21:15:55 +01:00
|
|
|
size_t ahci_registers_size = 0, i;
|
2020-03-13 21:17:21 +01:00
|
|
|
size_t ahci_cfg_registers_size = 0;
|
|
|
|
const io_register_t *ahci_cfg_registers;
|
|
|
|
size_t ahci_sir_offset = 0;
|
|
|
|
size_t ahci_sir_registers_size = 0;
|
|
|
|
const io_register_t *ahci_sir_registers;
|
2017-03-30 17:47:24 +02:00
|
|
|
|
2016-06-08 16:39:22 +02:00
|
|
|
if (!ahci) {
|
|
|
|
puts("No SATA device found");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
printf("\n============= AHCI Registers ==============\n\n");
|
2017-03-30 17:47:24 +02:00
|
|
|
|
2020-03-13 21:15:55 +01:00
|
|
|
switch (ahci->device_id) {
|
|
|
|
case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_SATA:
|
|
|
|
case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SATA:
|
|
|
|
ahci_registers_size = 0x800;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ahci_registers_size = 0x400;
|
|
|
|
}
|
2017-03-30 17:47:24 +02:00
|
|
|
|
2020-03-13 21:17:21 +01:00
|
|
|
printf("\n============= AHCI Configuration Registers ==============\n\n");
|
|
|
|
for (i = 0; i < ahci_cfg_registers_size; i++) {
|
|
|
|
switch (ahci_cfg_registers[i].size) {
|
|
|
|
case 4:
|
|
|
|
printf("0x%04x: 0x%08x (%s)\n",
|
|
|
|
ahci_cfg_registers[i].addr,
|
|
|
|
pci_read_long(ahci, ahci_cfg_registers[i].addr),
|
|
|
|
ahci_cfg_registers[i].name);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
printf("0x%04x: 0x%04x (%s)\n",
|
|
|
|
ahci_cfg_registers[i].addr,
|
|
|
|
pci_read_word(ahci, ahci_cfg_registers[i].addr),
|
|
|
|
ahci_cfg_registers[i].name);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
printf("0x%04x: 0x%02x (%s)\n",
|
|
|
|
ahci_cfg_registers[i].addr,
|
|
|
|
pci_read_byte(ahci, ahci_cfg_registers[i].addr),
|
|
|
|
ahci_cfg_registers[i].name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n============= SATA Initialization Registers ==============\n\n");
|
|
|
|
for (i = 0; i < ahci_sir_registers_size; i++) {
|
|
|
|
pci_write_byte(ahci, ahci_sir_offset, ahci_sir_registers[i].addr);
|
|
|
|
switch (ahci_sir_registers[i].size) {
|
|
|
|
case 4:
|
|
|
|
printf("0x%02x: 0x%08x (%s)\n",
|
|
|
|
ahci_sir_registers[i].addr,
|
|
|
|
pci_read_long(ahci, ahci_sir_offset),
|
|
|
|
ahci_sir_registers[i].name);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
printf("0x%02x: 0x%04x (%s)\n",
|
|
|
|
ahci_sir_registers[i].addr,
|
|
|
|
pci_read_word(ahci, ahci_sir_offset),
|
|
|
|
ahci_sir_registers[i].name);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
printf("0x%02x: 0x%02x (%s)\n",
|
|
|
|
ahci_sir_registers[i].addr,
|
|
|
|
pci_read_byte(ahci, ahci_sir_offset),
|
|
|
|
ahci_sir_registers[i].name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-13 21:15:55 +01:00
|
|
|
const pciaddr_t ahci_phys = ahci->base_addr[5] & ~0x7ULL;
|
|
|
|
printf("\n============= ABAR ==============\n\n");
|
|
|
|
printf("ABAR = 0x%08llx (MEM)\n\n", (unsigned long long)ahci_phys);
|
|
|
|
const uint8_t *const mmio = map_physical(ahci_phys, ahci_registers_size);
|
2016-06-08 16:39:22 +02:00
|
|
|
if (mmio == NULL) {
|
|
|
|
perror("Error mapping MMIO");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
puts("Generic Host Control Registers:");
|
|
|
|
for (i = 0; i < 0x100; i += 4) {
|
2017-03-31 13:12:49 +02:00
|
|
|
if (i / 4 < NUM_GHC) {
|
|
|
|
printf("0x%03zx: 0x%08x (%s)\n",
|
|
|
|
i, MMIO(i), ghc_regs[i / 4]);
|
|
|
|
} else if (MMIO(i)) {
|
|
|
|
printf("0x%03zx: 0x%08x (Reserved)\n", i, MMIO(i));
|
|
|
|
}
|
2016-06-08 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 21:15:55 +01:00
|
|
|
const size_t max_ports = (ahci_registers_size - 0x100) / 0x80;
|
2017-03-30 17:47:24 +02:00
|
|
|
for (i = 0; i < max_ports; i++) {
|
2017-03-31 13:12:49 +02:00
|
|
|
if (MMIO(0x0c) & 1 << i)
|
|
|
|
print_port(mmio, i);
|
2016-06-08 16:39:22 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 21:15:55 +01:00
|
|
|
puts("\nOther registers:");
|
|
|
|
for (i = 0x500; i < ahci_registers_size; i += 4) {
|
|
|
|
if (MMIO(i))
|
|
|
|
printf("0x%03zx: 0x%08x\n", i, MMIO(i));
|
2017-03-30 17:47:24 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 21:15:55 +01:00
|
|
|
unmap_physical((void *)mmio, ahci_registers_size);
|
2016-06-08 16:39:22 +02:00
|
|
|
return 0;
|
|
|
|
}
|