]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: Split 64bit hexadecimal addresses to make them easier to read
authorChris Wilson <chris@chris-wilson.co.uk>
Fri, 21 Mar 2014 12:05:47 +0000 (12:05 +0000)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 28 Mar 2014 17:33:15 +0000 (18:33 +0100)
commit8ccf236aeb1e041be8383fbd0464915a926fd1a1
tree685f805faf39a0200cb3bb7ad6708c950d75247b
parent71bb635e923b5674cd7f0c5f16081080ee9e22b8
drm/i915: Split 64bit hexadecimal addresses to make them easier to read

Broadwell introduces large address spaces, greater than 32bits in width.
These require that we then store and print 64bit values. If we were to
zero pad them out to 16 hexadecimal places, we have to carefully count
the leading zeroes - which is easy to make a mistake. Conversely, if we
do not zero pad out to 16, but keep it padding to 8 hexadecimal places,
it is very easy to miss an address that is actually larger than 4GiB. A
suggested compromise is to insert a space between the upper and lower
dwords of the address so that we can continue with our accustom 32bit
parser. (Alternatively, we could do the equivalent in our userspace
decoder.)

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_gpu_error.c