An error occurred fetching the project authors.
- 17 Mar, 2011 16 commits
-
-
Borislav Petkov authored
Drop static tables which map the bits in F2x80 to a chip select size in favor of functions doing the mapping with some bit fiddling. Also, add F15 support. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
This function is relevant for F10h and higher, and it has only one callsite so drop its function pointer from the low_ops struct. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Replace per-DCT macros with smarter ones, drop hack and look for the spare rank on all chip selects on a channel. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
On revC3 and revE Fam10h machines and later, non-interleaved graphics framebuffer memory under the 16G mark can be swapped with a region located at the bottom of memory so that the GPU can use the interleaved region and thus two channels. Add support for that. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
The address bits from MC4_STATUS differ only between K8 and the rest so no need for a per-family method. No functional change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Use the struct mce directly instead of copying from it into a custom struct err_regs. No functionality change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Remove unused defines, drop family names from define names. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
The fact whether we are chipkill capable or not does not have any bearing when computing the channel index on a ganged DCT configuration so remove that. Also, simplify debug statements. Finally, remove old error injection leftovers, while at it. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Remove family names from macro names, drop single bit defines and comment their meaning instead. No functional change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Shorten macro names, remove family name from macros, fix macro arguments, shorten debug strings. No functionality change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
* Restrict DCT ganged mode check since only Fam10h supports it * Adjust DRAM type detection for BD since it only supports DDR3 * Remove second and thus unneeded DCLR read in k8_early_channel_count() - we do that in read_mc_regs() * Cleanup comments and remove family names from register macros * Remove unused defines There should be no functional change resulting from this patch. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
This function maps the system address to the normalized DCT address. Document what the code does for more clarity and wrap insane bitmasks in a more understandable macro which generates them. Also, reduce number of arguments passed to the function. Finally, rename this function to what it actually does. No functional change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Add a struct representing the DRAM chip select base/limit register pairs. Concentrate all CS handling in a single function. Also, add CS looping macros for cleaner, more readable code. While at it, adjust code to F15h. Finally, do smaller macro names cleanups (remove family names from register macros) and debug messages clarification. No functional change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Adjust to F15h, simplify code, fixup macros. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Add a struct representing the DRAM base/limit range pairs and remove all cached subfields. Replace them with accessor functions, which actually saves us some space: text data bss dec hex filename 14712 1577 336 16625 40f1 drivers/edac/amd64_edac_mod.o.after 14831 1609 336 16776 4188 drivers/edac/amd64_edac_mod.o.before Also, it simplifies the code a lot allowing to merge the K8 and F10h routines. No functional change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
F15h "multiplexes" between the configuration space of the two DRAM controllers by toggling D18F1x10C[DctCfgSel] while F10h has a different set of registers for DCT0, and DCT1 in extended PCI config space. Add DCT configuration space accessors per family thus wrapping all the different access prerequisites. Clean up code while at it, shorten names. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 07 Jan, 2011 10 commits
-
-
Borislav Petkov authored
Make the ->{get|set}_sdram_scrub_rate return the actual scrub rate bandwidth it succeeded setting and remove superfluous arg pointer used for that. A negative value returned still means that an error occurred while setting the scrubrate. Document this for future reference. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
This is in preparation for the init path reorganization where we want only to 1) test whether a particular node supports ECC 2) can it be enabled and only then do the necessary allocation/initialization. For that, we need to decouple the ECC settings of the node from the instance's descriptor. The should be no functional change introduced by this patch. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
PCI ECS is being enabled by default since 2.6.26 on AMD so this code is just superfluous now, remove it. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Remove static allocation in favor of dynamically allocating space for as many driver instances as northbridges present on the system. There should be no functional change resulting from this patch. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Add a macro per printk level, shorten up error messages. Add relevant information to KERN_INFO level. No functional change. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Rename variables representing PCI devices to their BKDG names for faster search and shorter, clearer code. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Move the remaining per-family init code into the proper place and simplify the rest of the initialization. Reorganize error handling in amd64_init_one_instance(). Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Concentrate CPU family detection in the per-family init function. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Run a per-family init function which does all the settings based on the family this driver instance is running on. Move the scrubrate calculation in it and simplify code. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
F11h doesn't support DRAM ECC so whack it away. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 21 Oct, 2010 3 commits
-
-
Borislav Petkov authored
Add support for decoding F14h BU MCEs and improve decoding of the remaining families. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Drop "edac_" string from the filenames since they're prefixed with edac/ in their pathname anyway. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Add sysfs injection facilities for testing of the MCE decoding code. Remove large parts of amd64_edac_dbg.c, as a result, which did only NB MCE injection anyway and the new injection code supports that functionality already. Add an injection module so that MCE decoding code in production kernels like those in RHEL and SLES can be tested. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 03 Aug, 2010 2 commits
-
-
Borislav Petkov authored
All F2x110-related bit defines are used at only one place so replace them with simple BIT() macros. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com> Acked-by:
Doug Thompson <dougthompson@xmission.com>
-
Borislav Petkov authored
Remove the two syndrome extraction macros and add a single function which does the same thing but with proper typechecking. While at it, make sure to cache ECC syndrome size and dump it in debug output. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 01 Mar, 2010 1 commit
-
-
Borislav Petkov authored
No need for clearing ecc_enable_override and checking it in two places. Instead, simply check it during probing and act accordingly. Also, rename the flag bitfields according to the functionality they actually represent. What is more, make sure original BIOS ECC settings are restored when the module is unloaded. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 08 Dec, 2009 1 commit
-
-
Borislav Petkov authored
This was long overdue ... Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 07 Dec, 2009 5 commits
-
-
Borislav Petkov authored
The .probe_valid_hardware low_ops member checked whether the DCTs are in DDR3 mode and bailed out if so. Now that all the needed changes for DDR3 support is in place, remove it. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Add cs mode to cs size mapping tables for DDR2 and DDR3 and F10 and all K8 flavors and remove klugdy table of pseudo values. Add a low_ops->dbam_to_cs member which is family-specific and replaces low_ops->dbam_map_to_pages since the pages calculation is a one liner now. Further cleanups, while at it: - shorten family name defines - align amd64_family_types struct members Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Carve out the register-specific debug statements into a separate function, clarify meanings of the single bitfields in the register, remove irrelevant output and macros. There should be no functionality change resulting from this patch. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Add a pci config read wrapper for signaling pci config space access errors instead of them being visible only on a debug build. This is important on amd64_edac since it uses all those pci config register values to access the DRAM/DIMM configuration of the nodes. In addition, the wrapper makes a _lot_ (look at the diffstat!) of error handling code superfluous and improves much of the overall code readability by removing error handling details out of the way. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Unify almost identical code into one function and remove NUMA-specific usage (specifically cpumask_of_node()) in favor of generic topology methods. Remove unused defines, while at it. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
- 07 Oct, 2009 2 commits
-
-
Borislav Petkov authored
When injecting DRAM ECC errors (F3xBC_x8), EccVector[15:0] is a bitmask of which bits should be error injected when written to and holds the payload of 16-bit DRAM word when read, respectively. Add /sysfs members to show the DRAM ECC section/word/vector. Fail wrong injection values entered over /sysfs instead of truncating them. Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-
Borislav Petkov authored
Different processor families support a different number of chip selects. Handle this in a family-dependent way with the proper values assigned at init time (see amd64_set_dct_base_and_mask). Remove _DCSM_COUNT defines since they're used at one place and originate from public documentation. CC: Keith Mannthey <kmannth@us.ibm.com> Signed-off-by:
Borislav Petkov <borislav.petkov@amd.com>
-