Re: [Intel-gfx] [RFC] drm/i915/guc: Rename i915_guc_reg.h to intel_guc_reg.h

2017-11-23 Thread Sagar Arun Kamble



On 11/23/2017 11:39 PM, Michal Wajdeczko wrote:

We are using intel_ prefix for all filenames with hardware related
definitions. GuC registers also fall into this category.

Signed-off-by: Michal Wajdeczko 
Cc: Chris Wilson 
Cc: Joonas Lahtinen 
Cc: Sagar Arun Kamble 

Reviewed-by: Sagar Arun Kamble 
Could you make minor change to keep #include "intel_guc_reg.h" with 
other guc includes in intel_guc.h

---
  drivers/gpu/drm/i915/i915_guc_reg.h  | 119 ---
  drivers/gpu/drm/i915/intel_guc.h |   2 +-
  drivers/gpu/drm/i915/intel_guc_reg.h | 119 +++
  3 files changed, 120 insertions(+), 120 deletions(-)
  delete mode 100644 drivers/gpu/drm/i915/i915_guc_reg.h
  create mode 100644 drivers/gpu/drm/i915/intel_guc_reg.h

diff --git a/drivers/gpu/drm/i915/i915_guc_reg.h 
b/drivers/gpu/drm/i915/i915_guc_reg.h
deleted file mode 100644
index bc1ae7d..000
--- a/drivers/gpu/drm/i915/i915_guc_reg.h
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright © 2014 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- */
-#ifndef _I915_GUC_REG_H_
-#define _I915_GUC_REG_H_
-
-/* Definitions of GuC H/W registers, bits, etc */
-
-#define GUC_STATUS _MMIO(0xc000)
-#define   GS_RESET_SHIFT   0
-#define   GS_MIA_IN_RESET(0x01 << GS_RESET_SHIFT)
-#define   GS_BOOTROM_SHIFT 1
-#define   GS_BOOTROM_MASK(0x7F << GS_BOOTROM_SHIFT)
-#define   GS_BOOTROM_RSA_FAILED  (0x50 << GS_BOOTROM_SHIFT)
-#define   GS_BOOTROM_JUMP_PASSED (0x76 << GS_BOOTROM_SHIFT)
-#define   GS_UKERNEL_SHIFT 8
-#define   GS_UKERNEL_MASK(0xFF << GS_UKERNEL_SHIFT)
-#define   GS_UKERNEL_LAPIC_DONE  (0x30 << GS_UKERNEL_SHIFT)
-#define   GS_UKERNEL_DPC_ERROR   (0x60 << GS_UKERNEL_SHIFT)
-#define   GS_UKERNEL_READY   (0xF0 << GS_UKERNEL_SHIFT)
-#define   GS_MIA_SHIFT 16
-#define   GS_MIA_MASK(0x07 << GS_MIA_SHIFT)
-#define   GS_MIA_CORE_STATE  (0x01 << GS_MIA_SHIFT)
-#define   GS_MIA_HALT_REQUESTED  (0x02 << GS_MIA_SHIFT)
-#define   GS_MIA_ISR_ENTRY   (0x04 << GS_MIA_SHIFT)
-#define   GS_AUTH_STATUS_SHIFT 30
-#define   GS_AUTH_STATUS_MASK(0x03 << GS_AUTH_STATUS_SHIFT)
-#define   GS_AUTH_STATUS_BAD (0x01 << GS_AUTH_STATUS_SHIFT)
-#define   GS_AUTH_STATUS_GOOD(0x02 << GS_AUTH_STATUS_SHIFT)
-
-#define SOFT_SCRATCH(n)_MMIO(0xc180 + (n) * 4)
-#define SOFT_SCRATCH_COUNT 16
-
-#define UOS_RSA_SCRATCH(i) _MMIO(0xc200 + (i) * 4)
-#define   UOS_RSA_SCRATCH_MAX_COUNT  64
-#define DMA_ADDR_0_LOW _MMIO(0xc300)
-#define DMA_ADDR_0_HIGH_MMIO(0xc304)
-#define DMA_ADDR_1_LOW _MMIO(0xc308)
-#define DMA_ADDR_1_HIGH_MMIO(0xc30c)
-#define   DMA_ADDRESS_SPACE_WOPCM(7 << 16)
-#define   DMA_ADDRESS_SPACE_GTT  (8 << 16)
-#define DMA_COPY_SIZE  _MMIO(0xc310)
-#define DMA_CTRL   _MMIO(0xc314)
-#define   HUC_UKERNEL(1<<9)
-#define   UOS_MOVE   (1<<4)
-#define   START_DMA  (1<<0)
-#define DMA_GUC_WOPCM_OFFSET   _MMIO(0xc340)
-#define   HUC_LOADING_AGENT_VCR  (0<<1)
-#define   HUC_LOADING_AGENT_GUC  (1<<1)
-#define   GUC_WOPCM_OFFSET_VALUE 0x8   /* 512KB */
-#define GUC_MAX_IDLE_COUNT _MMIO(0xC3E4)
-
-#define HUC_STATUS2 _MMIO(0xD3B0)
-#define   HUC_FW_VERIFIED   (1<<7)
-
-/* Defines WOPCM space available to GuC firmware */
-#define GUC_WOPCM_SIZE _MMIO(0xc050)
-/* GuC addresses below GUC_WOPCM_TOP don't map through the GTT */
-#defi

Re: [Intel-gfx] [RFC] drm/i915/guc: Rename i915_guc_reg.h to intel_guc_reg.h

2017-11-23 Thread Chris Wilson
Quoting Michal Wajdeczko (2017-11-23 18:09:15)
> We are using intel_ prefix for all filenames with hardware related
> definitions. GuC registers also fall into this category.

Seconded.
-Chris
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


[Intel-gfx] [RFC] drm/i915/guc: Rename i915_guc_reg.h to intel_guc_reg.h

2017-11-23 Thread Michal Wajdeczko
We are using intel_ prefix for all filenames with hardware related
definitions. GuC registers also fall into this category.

Signed-off-by: Michal Wajdeczko 
Cc: Chris Wilson 
Cc: Joonas Lahtinen 
Cc: Sagar Arun Kamble 
---
 drivers/gpu/drm/i915/i915_guc_reg.h  | 119 ---
 drivers/gpu/drm/i915/intel_guc.h |   2 +-
 drivers/gpu/drm/i915/intel_guc_reg.h | 119 +++
 3 files changed, 120 insertions(+), 120 deletions(-)
 delete mode 100644 drivers/gpu/drm/i915/i915_guc_reg.h
 create mode 100644 drivers/gpu/drm/i915/intel_guc_reg.h

diff --git a/drivers/gpu/drm/i915/i915_guc_reg.h 
b/drivers/gpu/drm/i915/i915_guc_reg.h
deleted file mode 100644
index bc1ae7d..000
--- a/drivers/gpu/drm/i915/i915_guc_reg.h
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright © 2014 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- */
-#ifndef _I915_GUC_REG_H_
-#define _I915_GUC_REG_H_
-
-/* Definitions of GuC H/W registers, bits, etc */
-
-#define GUC_STATUS _MMIO(0xc000)
-#define   GS_RESET_SHIFT   0
-#define   GS_MIA_IN_RESET(0x01 << GS_RESET_SHIFT)
-#define   GS_BOOTROM_SHIFT 1
-#define   GS_BOOTROM_MASK(0x7F << GS_BOOTROM_SHIFT)
-#define   GS_BOOTROM_RSA_FAILED  (0x50 << GS_BOOTROM_SHIFT)
-#define   GS_BOOTROM_JUMP_PASSED (0x76 << GS_BOOTROM_SHIFT)
-#define   GS_UKERNEL_SHIFT 8
-#define   GS_UKERNEL_MASK(0xFF << GS_UKERNEL_SHIFT)
-#define   GS_UKERNEL_LAPIC_DONE  (0x30 << GS_UKERNEL_SHIFT)
-#define   GS_UKERNEL_DPC_ERROR   (0x60 << GS_UKERNEL_SHIFT)
-#define   GS_UKERNEL_READY   (0xF0 << GS_UKERNEL_SHIFT)
-#define   GS_MIA_SHIFT 16
-#define   GS_MIA_MASK(0x07 << GS_MIA_SHIFT)
-#define   GS_MIA_CORE_STATE  (0x01 << GS_MIA_SHIFT)
-#define   GS_MIA_HALT_REQUESTED  (0x02 << GS_MIA_SHIFT)
-#define   GS_MIA_ISR_ENTRY   (0x04 << GS_MIA_SHIFT)
-#define   GS_AUTH_STATUS_SHIFT 30
-#define   GS_AUTH_STATUS_MASK(0x03 << GS_AUTH_STATUS_SHIFT)
-#define   GS_AUTH_STATUS_BAD (0x01 << GS_AUTH_STATUS_SHIFT)
-#define   GS_AUTH_STATUS_GOOD(0x02 << GS_AUTH_STATUS_SHIFT)
-
-#define SOFT_SCRATCH(n)_MMIO(0xc180 + (n) * 4)
-#define SOFT_SCRATCH_COUNT 16
-
-#define UOS_RSA_SCRATCH(i) _MMIO(0xc200 + (i) * 4)
-#define   UOS_RSA_SCRATCH_MAX_COUNT  64
-#define DMA_ADDR_0_LOW _MMIO(0xc300)
-#define DMA_ADDR_0_HIGH_MMIO(0xc304)
-#define DMA_ADDR_1_LOW _MMIO(0xc308)
-#define DMA_ADDR_1_HIGH_MMIO(0xc30c)
-#define   DMA_ADDRESS_SPACE_WOPCM(7 << 16)
-#define   DMA_ADDRESS_SPACE_GTT  (8 << 16)
-#define DMA_COPY_SIZE  _MMIO(0xc310)
-#define DMA_CTRL   _MMIO(0xc314)
-#define   HUC_UKERNEL(1<<9)
-#define   UOS_MOVE   (1<<4)
-#define   START_DMA  (1<<0)
-#define DMA_GUC_WOPCM_OFFSET   _MMIO(0xc340)
-#define   HUC_LOADING_AGENT_VCR  (0<<1)
-#define   HUC_LOADING_AGENT_GUC  (1<<1)
-#define   GUC_WOPCM_OFFSET_VALUE 0x8   /* 512KB */
-#define GUC_MAX_IDLE_COUNT _MMIO(0xC3E4)
-
-#define HUC_STATUS2 _MMIO(0xD3B0)
-#define   HUC_FW_VERIFIED   (1<<7)
-
-/* Defines WOPCM space available to GuC firmware */
-#define GUC_WOPCM_SIZE _MMIO(0xc050)
-/* GuC addresses below GUC_WOPCM_TOP don't map through the GTT */
-#define   GUC_WOPCM_TOP  (0x80 << 12)  /* 512KB */
-#define   BXT_GUC_WOPCM_RC6_RESERVED (0x10 << 12)  /* 64KB  */
-
-/* GuC addresses above GUC_GGTT_TOP also don't map thr