public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Leif Lindholm <leif.lindholm@linaro.org>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: edk2-devel@lists.01.org
Subject: Re: [PATCH edk2-platforms] Silicon/SynQuacerPciHostBridgeLib: fix weird indentation
Date: Wed, 29 Nov 2017 19:14:52 +0000	[thread overview]
Message-ID: <20171129191452.eg45tftys4ltny22@bivouac.eciton.net> (raw)
In-Reply-To: <20171129183505.7954-1-ard.biesheuvel@linaro.org>

On Wed, Nov 29, 2017 at 06:35:05PM +0000, Ard Biesheuvel wrote:
> Fix the weird indentation in the various #defines in the file containing
> the RC init code. This is a whitespace only change.

I did notice this when reviewing it originally, but since it was
completely consistent I didn't raise any objections.

> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

> ---
>  Silicon/Socionext/SynQuacer/Library/SynQuacerPciHostBridgeLib/SynQuacerPciHostBridgeLibConstructor.c | 138 ++++++++++----------
>  1 file changed, 69 insertions(+), 69 deletions(-)
> 
> diff --git a/Silicon/Socionext/SynQuacer/Library/SynQuacerPciHostBridgeLib/SynQuacerPciHostBridgeLibConstructor.c b/Silicon/Socionext/SynQuacer/Library/SynQuacerPciHostBridgeLib/SynQuacerPciHostBridgeLibConstructor.c
> index 1bbef5b6cf98..6b42d3e29806 100644
> --- a/Silicon/Socionext/SynQuacer/Library/SynQuacerPciHostBridgeLib/SynQuacerPciHostBridgeLibConstructor.c
> +++ b/Silicon/Socionext/SynQuacer/Library/SynQuacerPciHostBridgeLib/SynQuacerPciHostBridgeLibConstructor.c
> @@ -46,75 +46,75 @@
>  #define IATU_LWR_TARGET_ADDR_OFF_OUTBOUND_0                 0x918
>  #define IATU_UPPER_TARGET_ADDR_OFF_OUTBOUND_0               0x91C
>  
> -#define CORE_CONTROL       0x000
> -#define   APP_LTSSM_ENABLE    BIT4
> -#define   DEVICE_TYPE         (BIT3 | BIT2 | BIT1 | BIT0)
> -
> -#define AXI_CLK_STOP       0x004
> -#define   DBI_ACLK_STOP       BIT8
> -#define   SLV_ACLK_STOP       BIT4
> -#define   MSTR_ACLK_STOP      BIT0
> -#define   DBI_CSYSREQ_REG     BIT9
> -#define   SLV_CSYSREQ_REG     BIT5
> -#define   MSTR_CSYSREQ_REG    BIT1
> -
> -#define RESET_CONTROL_1    0x00C
> -#define   PERST_N_O_REG       BIT5
> -#define   PERST_N_I_REG       BIT4
> -#define   BUTTON_RST_N_REG    BIT1
> -#define   PWUP_RST_N_REG      BIT0
> -
> -#define RESET_CONTROL_2    0x010
> -
> -#define RESET_SELECT_1     0x014
> -#define   SQU_RST_SEL         BIT29
> -#define   PHY_RST_SEL         BIT28
> -#define   PWR_RST_SEL         BIT24
> -#define   STI_RST_SEL         BIT20
> -#define   N_STI_RST_SEL       BIT16
> -#define   CORE_RST_SEL        BIT12
> -#define   PERST_SEL           BIT4
> -#define   BUTTON_RST_SEL      BIT1
> -#define   PWUP_RST_SEL        BIT0
> -
> -#define RESET_SELECT_2     0x018
> -#define   DBI_ARST_SEL        BIT8
> -#define   SLV_ARST_SEL        BIT4
> -#define   MSTR_ARST_SEL       BIT0
> -
> -#define EM_CONTROL 0x030
> -#define   PRE_DET_STT_REG     BIT4
> -
> -#define EM_SELECT 0x034
> -#define   PRE_DET_STT_SEL     BIT4
> -
> -#define PM_CONTROL_2       0x050
> -#define   SYS_AUX_PWR_DET     BIT8
> -
> -#define PHY_CONFIG_COM_6   0x114
> -#define   PIPE_PORT_SEL       (BIT1 | BIT0)
> -
> -#define LINK_MONITOR       0x210
> -#define   SMLH_LINK_UP        BIT0
> -
> -#define LINK_CAPABILITIES_REG 0x07C
> -#define   PCIE_CAP_MAX_LINK_WIDTH (BIT7 | BIT6 | BIT5 | BIT4)
> -#define   PCIE_CAP_MAX_LINK_SPEED (BIT3 | BIT2 | BIT1 | BIT0)
> -
> -#define LINK_CONTROL_LINK_STATUS_REG 0x080
> -#define   PCIE_CAP_NEGO_LINK_WIDTH (BIT23 | BIT22 | BIT21 | BIT20)
> -#define   PCIE_CAP_LINK_SPEED      (BIT19 | BIT18 | BIT17 | BIT16)
> -
> -#define TYPE1_CLASS_CODE_REV_ID_REG 0x008
> -#define   BASE_CLASS_CODE             0xFF000000
> -#define     BASE_CLASS_CODE_VALUE       0x06
> -#define   SUBCLASS_CODE               0x00FF0000
> -#define     SUBCLASS_CODE_VALUE         0x04
> -#define   PROGRAM_INTERFACE           0x0000FF00
> -#define     PROGRAM_INTERFACE_VALUE     0x00
> -
> -#define MISC_CONTROL_1_OFF 0x8BC
> -#define   DBI_RO_WR_EN       BIT0
> +#define CORE_CONTROL                  0x000
> +#define APP_LTSSM_ENABLE              BIT4
> +#define DEVICE_TYPE                   (BIT3 | BIT2 | BIT1 | BIT0)
> +
> +#define AXI_CLK_STOP                  0x004
> +#define DBI_ACLK_STOP                 BIT8
> +#define SLV_ACLK_STOP                 BIT4
> +#define MSTR_ACLK_STOP                BIT0
> +#define DBI_CSYSREQ_REG               BIT9
> +#define SLV_CSYSREQ_REG               BIT5
> +#define MSTR_CSYSREQ_REG              BIT1
> +
> +#define RESET_CONTROL_1               0x00C
> +#define PERST_N_O_REG                 BIT5
> +#define PERST_N_I_REG                 BIT4
> +#define BUTTON_RST_N_REG              BIT1
> +#define PWUP_RST_N_REG                BIT0
> +
> +#define RESET_CONTROL_2               0x010
> +
> +#define RESET_SELECT_1                0x014
> +#define SQU_RST_SEL                   BIT29
> +#define PHY_RST_SEL                   BIT28
> +#define PWR_RST_SEL                   BIT24
> +#define STI_RST_SEL                   BIT20
> +#define N_STI_RST_SEL                 BIT16
> +#define CORE_RST_SEL                  BIT12
> +#define PERST_SEL                     BIT4
> +#define BUTTON_RST_SEL                BIT1
> +#define PWUP_RST_SEL                  BIT0
> +
> +#define RESET_SELECT_2                0x018
> +#define DBI_ARST_SEL                  BIT8
> +#define SLV_ARST_SEL                  BIT4
> +#define MSTR_ARST_SEL                 BIT0
> +
> +#define EM_CONTROL                    0x030
> +#define PRE_DET_STT_REG               BIT4
> +
> +#define EM_SELECT                     0x034
> +#define PRE_DET_STT_SEL               BIT4
> +
> +#define PM_CONTROL_2                  0x050
> +#define SYS_AUX_PWR_DET               BIT8
> +
> +#define PHY_CONFIG_COM_6              0x114
> +#define PIPE_PORT_SEL                 (BIT1 | BIT0)
> +
> +#define LINK_MONITOR                  0x210
> +#define SMLH_LINK_UP                  BIT0
> +
> +#define LINK_CAPABILITIES_REG         0x07C
> +#define PCIE_CAP_MAX_LINK_WIDTH       (BIT7 | BIT6 | BIT5 | BIT4)
> +#define PCIE_CAP_MAX_LINK_SPEED       (BIT3 | BIT2 | BIT1 | BIT0)
> +
> +#define LINK_CONTROL_LINK_STATUS_REG  0x080
> +#define PCIE_CAP_NEGO_LINK_WIDTH      (BIT23 | BIT22 | BIT21 | BIT20)
> +#define PCIE_CAP_LINK_SPEED           (BIT19 | BIT18 | BIT17 | BIT16)
> +
> +#define TYPE1_CLASS_CODE_REV_ID_REG   0x008
> +#define BASE_CLASS_CODE               0xFF000000
> +#define BASE_CLASS_CODE_VALUE         0x06
> +#define SUBCLASS_CODE                 0x00FF0000
> +#define SUBCLASS_CODE_VALUE           0x04
> +#define PROGRAM_INTERFACE             0x0000FF00
> +#define PROGRAM_INTERFACE_VALUE       0x00
> +
> +#define MISC_CONTROL_1_OFF            0x8BC
> +#define DBI_RO_WR_EN                  BIT0
>  
>  STATIC
>  VOID
> -- 
> 2.11.0
> 


  reply	other threads:[~2017-11-29 19:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-29 18:35 [PATCH edk2-platforms] Silicon/SynQuacerPciHostBridgeLib: fix weird indentation Ard Biesheuvel
2017-11-29 19:14 ` Leif Lindholm [this message]
2017-11-29 19:24 ` Laszlo Ersek
2017-11-30 18:48   ` Ard Biesheuvel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171129191452.eg45tftys4ltny22@bivouac.eciton.net \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox