/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _INTEL_NHM_H #define _INTEL_NHM_H #ifdef __cplusplus extern "C" { #endif #define NHM_EP_CPU 0x2c408086 #define NHM_WS_CPU 0x2c418086 #define NHM_CPU_RAS 0x2c1a8086 #define NHM_INTERCONNECT "Intel QuickPath" #define MAX_CPU_NODES 2 #define CPU_PCI_DEVS 6 #define CPU_PCI_FUNCS 6 #define MAX_BUS_NUMBER max_bus_number #define SOCKET_BUS(cpu) (MAX_BUS_NUMBER - (cpu)) #define CPU_ID_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 0, 0, 0, 0) #define MC_CONTROL_RD(cpu) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 0, 0x48, 0) #define MC_STATUS_RD(cpu) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 0, 0x4c, 0) #define MC_SMI_SPARE_DIMM_ERROR_STATUS_RD(cpu) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 0, 0x50, 0) #define MC_CPU_RAS_RD(cpu) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0, 0) #define MC_SCRUB_CONTROL_RD(cpu) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x4c, 0) #define MC_SCRUB_CONTROL_WR(cpu, reg) nhm_pci_putl(SOCKET_BUS(cpu), 3, 2, \ 0x4c, reg); #define MC_SSR_CONTROL_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x48, 0) #define MC_SSR_CONTROL_WR(cpu, reg) nhm_pci_putl(SOCKET_BUS(cpu), 3, 2, 0x48, \ reg); #define MC_SSR_SCRUB_CONTROL_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, \ 0x4c, 0) #define MC_RAS_ENABLES_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x50, 0) #define MC_RAS_STATUS_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x54, 0) #define MC_SSR_STATUS_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x60, 0) #define MC_CHANNEL_MAPPER_RD(cpu) nhm_pci_getl(SOCKET_BUS(cpu), 3, 0, \ 0x60, 0) #define MC_COR_ECC_CNT_RD(cpu, select) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x80 + ((select) * 4), 0) #define MC_CHANNEL_RANK_PRESENT_RD(cpu, channel) \ nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 0, 0x7c, 0) #define MC_DOD_RD(cpu, channel, select) \ nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 1, 0x48 + ((select) * 4), 0) #define MC_SAG_RD(cpu, channel, select) \ nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 1, 0x80 + ((select) * 4), 0) #define MC_RIR_LIMIT_RD(cpu, channel, select) \ nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 2, 0x40 + ((select) * 4), 0) #define MC_RIR_WAY_RD(cpu, channel, select) \ nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 2, 0x80 + ((select) * 4), 0) #define MC_CHANNEL_DIMM_INIT_PARAMS_RD(cpu, channel) \ nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 0, 0x58, 0) #define SAD_DRAM_RULE_RD(cpu, rule) \ nhm_pci_getl(SOCKET_BUS(cpu), 0, 1, 0x80 + (4 * (rule)), 0) #define SAD_INTERLEAVE_LIST_RD(cpu, rule) \ nhm_pci_getl(SOCKET_BUS(cpu), 0, 1, 0xc0 + (4 * (rule)), 0) #define TAD_DRAM_RULE_RD(cpu, rule) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 1, 0x80 + (4 * (rule)), 0) #define TAD_INTERLEAVE_LIST_RD(cpu, rule) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 1, 0xc0 + (4 * (rule)), 0) #define MC_DIMM_CLK_RATIO_STATUS(cpu) \ nhm_pci_getl(SOCKET_BUS(cpu), 3, 4, 0x50, 0) /* * MC_CONTROL */ #define MC_CONTROL_CHANNEL_ACTIVE(reg, channel) \ ((reg) & (1 << (8 + (channel))) != 0) #define MC_CONTROL_ECCEN(reg) (((reg) >> 1) & 1) #define MC_CONTROL_CLOSED_PAGE(reg) ((reg) & 1) /* * MC_STATUS */ #define CHANNEL_DISABLED(reg, channel) ((reg) & (1 << (channel))) #define WS_ECC_ENABLED 0x10 /* * MC_CHANNEL_DIMM_INIT_PARAMS */ #define THREE_DIMMS_PRESENT (1 << 24) /* not quad rank */ #define SINGLE_QUAD_RANK_PRESENT (1 << 23) #define QUAD_RANK_PRESENT (1 << 22) /* 1 or 2 quad rank dimms */ #define REGISTERED_DIMM (1 << 15) /* * MC_DOD_CH */ #define RANKOFFSET(reg) (((reg) >> 10) & 7) #define DIMMPRESENT(reg) (((reg) & (1 << 9)) != 0) #define NUMBANK(reg) (((reg) & (3 << 7)) == 0 ? 4 : (((reg) >> 7) & 3) * 8) #define NUMRANK(reg) (((reg) & (3 << 5)) == 0 ? 1 : (((reg) >> 5) & 3) * 2) #define NUMROW(reg) ((((reg) >> 2) & 7) + 12) #define NUMCOL(reg) (((reg) & 3) + 10) #define DIMMWIDTH 8 #define DIMMSIZE(reg) ((1ULL << (NUMCOL(reg) + NUMROW(reg))) * NUMRANK(reg) \ * NUMBANK(reg) * DIMMWIDTH) /* * MC_SAG_CH */ #define DIVBY3(reg) (((reg) >> 27) & 1) /* 3 or 6 way interleave */ #define REMOVE_6(reg) (((reg) >> 24) & 1) #define REMOVE_7(reg) (((reg) >> 25) & 1) #define REMOVE_8(reg) (((reg) >> 26) & 1) #define CH_ADDRESS_OFFSET(reg) \ ((int64_t)(((uint64_t)(reg) & 0x00ffffff) << 40) >> 40) /* * MC_RIR_LIMIT_CH */ #define RIR_LIMIT(reg) ((((uint64_t)(reg) & 0x000003ff) + 1) << 28) /* * MC_RIR_WAY_CH */ #define RIR_OFFSET(reg) ((int64_t)(((uint64_t)(reg) & 0x3ff0) << 50) >> 54) #define RIR_RANK(reg) ((reg) & 0xf) #define MAX_RIR_WAY 4 /* * MC_RAS_ENABLES */ #define RAS_LOCKSTEP_ENABLE(reg) (((reg) & 2) != 0) #define RAS_MIRROR_MEM_ENABLE(reg) (((reg) & 1) != 0) /* * MC_RAS_STATUS */ #define REDUNDANCY_LOSS(reg) (((reg) & 1) != 0) /* * MC_SSRSTATUS */ #define SPAREING_IN_PROGRESS(reg) (((reg) & 2) != 0) #define SPAREING_COMPLETE(reg) (((reg) & 1) != 0) /* * MC_SSR_CONTROL */ #define SSR_MODE(reg) ((reg) & 3) #define SSR_IDLE 0 #define SSR_SCRUB 1 #define SSR_SPARE 2 #define DEMAND_SCRUB_ENABLE (1 << 6) /* * MC_SCRUB_CONTROL */ #define STARTSCRUB (1 << 24) /* * MC_DIMM_CLK_RATIO_STATUS */ #define MAX_DIMM_CLK_RATIO(reg) (((reg) >> 24) & 0x1f) /* * MC_SMI_SPARE_DIMM_ERROR_STATUS_RD */ #define REDUNDANCY_LOSS_FAILING_DIMM(status) (((status) >> 12) & 3) #define DIMM_ERROR_OVERFLOW_STATUS(status) ((status) & 0xfff) #define MAX_MEMORY_CONTROLLERS MAX_CPU_NODES #define CHANNELS_PER_MEMORY_CONTROLLER 3 #define MAX_DIMMS_PER_CHANNEL 3 /* * SAD_DRAM_RULE */ #define SAD_DRAM_LIMIT(sad) ((((uint64_t)(sad) & 0x000fffc0ULL) + 0x40) << 20) #define SAD_DRAM_MODE(sad) (((sad) >> 1) & 3) #define SAD_DRAM_RULE_ENABLE(sad) ((sad) & 1) #define SAD_INTERLEAVE(list, num) (((list) >> ((num) * 4)) & 0x3) #define INTERLEAVE_NWAY 8 #define MAX_SAD_DRAM_RULE 8 /* * TAD_DRAM_RULE */ #define TAD_DRAM_LIMIT(tad) ((((uint64_t)(tad) & 0x000fffc0ULL) + 0x40) << 20) #define TAD_DRAM_MODE(tad) (((tad) >> 1) & 3) #define TAD_DRAM_RULE_ENABLE(tad) ((tad) & 1) #define TAD_INTERLEAVE(list, channel) (((list) >> ((channel) * 4)) & 3) #define MAX_TAD_DRAM_RULE 8 #define VRANK_SZ 0x40000000 /* * MC_CHANNEL_MAPPER */ #define CHANNEL_MAP(reg, channel, write) (((reg) >> ((channel) * 6 + \ ((write) ? 0 : 3))) & 7) extern int max_bus_number; #ifdef __cplusplus } #endif #endif /* _INTEL_NHM_H */