You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cpu_linux_ppc64x.go 803B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build linux
  5. // +build ppc64 ppc64le
  6. package cpu
  7. const cacheLineSize = 128
  8. // HWCAP/HWCAP2 bits. These are exposed by the kernel.
  9. const (
  10. // ISA Level
  11. _PPC_FEATURE2_ARCH_2_07 = 0x80000000
  12. _PPC_FEATURE2_ARCH_3_00 = 0x00800000
  13. // CPU features
  14. _PPC_FEATURE2_DARN = 0x00200000
  15. _PPC_FEATURE2_SCV = 0x00100000
  16. )
  17. func doinit() {
  18. // HWCAP2 feature bits
  19. PPC64.IsPOWER8 = isSet(hwCap2, _PPC_FEATURE2_ARCH_2_07)
  20. PPC64.IsPOWER9 = isSet(hwCap2, _PPC_FEATURE2_ARCH_3_00)
  21. PPC64.HasDARN = isSet(hwCap2, _PPC_FEATURE2_DARN)
  22. PPC64.HasSCV = isSet(hwCap2, _PPC_FEATURE2_SCV)
  23. }
  24. func isSet(hwc uint, value uint) bool {
  25. return hwc&value != 0
  26. }