public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Chris Co <Christopher.Co@microsoft.com>
To: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	Leif Lindholm <leif.lindholm@linaro.org>,
	Michael D Kinney <michael.d.kinney@intel.com>
Subject: [PATCH edk2-platforms 02/13] Silicon/NXP: Add i.MX6 GPT and EPIT timer headers
Date: Fri, 20 Jul 2018 06:33:45 +0000	[thread overview]
Message-ID: <20180720063328.26856-3-christopher.co@microsoft.com> (raw)
In-Reply-To: <20180720063328.26856-1-christopher.co@microsoft.com>

This adds the definitions for the NXP i.MX6 General Purpose Timer
and the Enhanced Periodic Interrupt Timer modules.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Christopher Co <christopher.co@microsoft.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
---
 Silicon/NXP/iMX6Pkg/Include/common_epit.h | 158 ++++++++++
 Silicon/NXP/iMX6Pkg/Include/common_gpt.h  | 314 ++++++++++++++++++++
 2 files changed, 472 insertions(+)

diff --git a/Silicon/NXP/iMX6Pkg/Include/common_epit.h b/Silicon/NXP/iMX6Pkg/Include/common_epit.h
new file mode 100644
index 000000000000..a0be49f59da0
--- /dev/null
+++ b/Silicon/NXP/iMX6Pkg/Include/common_epit.h
@@ -0,0 +1,158 @@
+/** @file
+*
+*  Provides definitions for the EPIT (Enhanced Periodic Interrupt Timer)
+*  module that are common to Freescale SoCs.
+*
+*  Copyright (c) Microsoft Corporation. All rights reserved.
+*  Copyright (c) 2004-2010, Freescale Semiconductor, Inc. All Rights Reserved.
+*  This program and the accompanying materials
+*  are licensed and made available under the terms and conditions of the BSD License
+*  which accompanies this distribution.  The full text of the license may be found at
+*  http://opensource.org/licenses/bsd-license.php
+*
+*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+*
+**/
+
+#ifndef __COMMON_EPIT_H
+#define __COMMON_EPIT_H
+
+#if __cplusplus
+extern "C" {
+#endif
+
+
+//------------------------------------------------------------------------------
+// GENERAL MODULE CONSTANTS
+//------------------------------------------------------------------------------
+
+
+//------------------------------------------------------------------------------
+// REGISTER LAYOUT
+//------------------------------------------------------------------------------
+typedef struct
+{
+     UINT32 CR;
+     UINT32 SR;
+     UINT32 LR;
+     UINT32 CMPR;
+     UINT32 CNT;
+} CSP_EPIT_REG, *PCSP_EPIT_REG;
+
+
+//------------------------------------------------------------------------------
+// REGISTER OFFSETS
+//------------------------------------------------------------------------------
+#define EPIT_CR_OFFSET          0x0000
+#define EPIT_SR_OFFSET          0x0004
+#define EPIT_LR_OFFSET          0x0008
+#define EPIT_CMPR_OFFSET        0x000C
+#define EPIT_CNR_OFFSET         0x0010
+
+
+//------------------------------------------------------------------------------
+// REGISTER BIT FIELD POSITIONS (LEFT SHIFT)
+//------------------------------------------------------------------------------
+#define EPIT_CR_EN_LSH          0
+#define EPIT_CR_ENMOD_LSH       1
+#define EPIT_CR_OCIEN_LSH       2
+#define EPIT_CR_RLD_LSH         3
+#define EPIT_CR_PRESCALAR_LSH   4
+#define EPIT_CR_SWR_LSH         16
+#define EPIT_CR_IOVW_LSH        17
+#define EPIT_CR_DBGEN_LSH       18
+#define EPIT_CR_WAITEN_LSH      19
+#define EPIT_CR_DOZEN_LSH       20
+#define EPIT_CR_STOPEN_LSH      21
+#define EPIT_CR_OM_LSH          22
+#define EPIT_CR_CLKSRC_LSH      24
+
+#define EPIT_SR_OCIF_LSH        0
+
+#define EPIT_LR_LOAD_LSH        0
+
+#define EPIT_CMPR_COMPARE_LSH   0
+
+#define EPIT_CNT_COUNT_LSH      0
+
+
+//------------------------------------------------------------------------------
+// REGISTER BIT FIELD WIDTHS
+//------------------------------------------------------------------------------
+#define EPIT_CR_EN_WID          1
+#define EPIT_CR_ENMOD_WID       1
+#define EPIT_CR_OCIEN_WID       2
+#define EPIT_CR_RLD_WID         1
+#define EPIT_CR_PRESCALAR_WID   12
+#define EPIT_CR_SWR_WID         1
+#define EPIT_CR_IOVW_WID        1
+#define EPIT_CR_DBGEN_WID       1
+#define EPIT_CR_WAITEN_WID      1
+#define EPIT_CR_DOZEN_WID       1
+#define EPIT_CR_STOPEN_WID      1
+#define EPIT_CR_OM_WID          2
+#define EPIT_CR_CLKSRC_WID      2
+
+#define EPIT_SR_OCIF_WID        1
+
+#define EPIT_LR_LOAD_WID        32
+
+#define EPIT_CMPR_COMPARE_WID   32
+
+#define EPIT_CNT_COUNT_WID      32
+
+
+//------------------------------------------------------------------------------
+// REGISTER BIT WRITE VALUES
+//------------------------------------------------------------------------------
+
+// CR
+#define EPIT_CR_EN_DISABLE          0
+#define EPIT_CR_EN_ENABLE           1
+
+#define EPIT_CR_ENMOD_RESUME        0
+#define EPIT_CR_ENMOD_LOAD          1
+
+#define EPIT_CR_OCIEN_DISABLE       0
+#define EPIT_CR_OCIEN_ENABLE        1
+
+#define EPIT_CR_RLD_ROLLOVER        0
+#define EPIT_CR_RLD_RELOAD          1
+
+#define EPIT_CR_SWR_NORESET         0
+#define EPIT_CR_SWR_RESET           1
+
+#define EPIT_CR_IOVW_NOOVR          0
+#define EPIT_CR_IOVW_OVR            1
+
+#define EPIT_CR_DBGEN_INACTIVE      0
+#define EPIT_CR_DBGEN_ACTIVE        1
+
+#define EPIT_CR_WAITEN_DISABLE      0
+#define EPIT_CR_WAITEN_ENABLE       1
+
+#define EPIT_CR_DOZEN_DISABLE       0
+#define EPIT_CR_DOZEN_ENABLE        1
+
+#define EPIT_CR_STOPEN_DISABLE      0
+#define EPIT_CR_STOPEN_ENABLE       1
+
+#define EPIT_CR_OM_DICONNECT        0
+#define EPIT_CR_OM_TOGGLE           1
+#define EPIT_CR_OM_CLEAR            2
+#define EPIT_CR_OM_SET              3
+
+#define EPIT_CR_CLKSRC_OFF          0
+#define EPIT_CR_CLKSRC_IPGCLK       1
+#define EPIT_CR_CLKSRC_HIGHFREQ     2   // High freq is sourcing from PERCLK
+#define EPIT_CR_CLKSRC_CKIL         3
+
+// CNT
+#define EPIT_CNT_COUNT_MAX          0xFFFFFFFF
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // __COMMON_EPIT_H
diff --git a/Silicon/NXP/iMX6Pkg/Include/common_gpt.h b/Silicon/NXP/iMX6Pkg/Include/common_gpt.h
new file mode 100644
index 000000000000..3c92023a60fe
--- /dev/null
+++ b/Silicon/NXP/iMX6Pkg/Include/common_gpt.h
@@ -0,0 +1,314 @@
+/** @file
+*
+*  Provides definitions for the GPT (General Purpose Timer) module
+*  that are common to Freescale SoCs.
+*
+*  Copyright (c) Microsoft Corporation. All rights reserved.
+*  Copyright (c) 2004-2010, Freescale Semiconductor, Inc. All Rights Reserved.
+*  This program and the accompanying materials
+*  are licensed and made available under the terms and conditions of the BSD License
+*  which accompanies this distribution.  The full text of the license may be found at
+*  http://opensource.org/licenses/bsd-license.php
+*
+*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+*
+**/
+
+#ifndef __COMMON_GPT_H
+#define __COMMON_GPT_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+//------------------------------------------------------------------------------
+// GENERAL MODULE CONSTANTS
+//------------------------------------------------------------------------------
+
+
+//------------------------------------------------------------------------------
+// REGISTER LAYOUT
+//------------------------------------------------------------------------------
+typedef struct
+{
+     UINT32 CR;
+     UINT32 PR;
+     UINT32 SR;
+     UINT32 IR;
+     UINT32 OCR1;
+     UINT32 OCR2;
+     UINT32 OCR3;
+     UINT32 ICR1;
+     UINT32 ICR2;
+     UINT32 CNT;
+} CSP_GPT_REGS, *PCSP_GPT_REGS;
+
+
+//------------------------------------------------------------------------------
+// REGISTER OFFSETS
+//------------------------------------------------------------------------------
+#define GPT_CR_OFFSET          0x0000
+#define GPT_PR_OFFSET          0x0004
+#define GPT_SR_OFFSET          0x0008
+#define GPT_IR_OFFSET          0x000C
+#define GPT_OCR1_OFFSET        0x0010
+#define GPT_OCR2_OFFSET        0x0014
+#define GPT_OCR3_OFFSET        0x0018
+#define GPT_ICR1_OFFSET        0x001C
+#define GPT_ICR2_OFFSET        0x0020
+#define GPT_CNT_OFFSET         0x0024
+
+
+//------------------------------------------------------------------------------
+// REGISTER BIT FIELD POSITIONS (LEFT SHIFT)
+//------------------------------------------------------------------------------
+#define GPT_CR_EN_LSH          0
+#define GPT_CR_ENMOD_LSH       1
+#define GPT_CR_DBGEN_LSH       2
+#define GPT_CR_WAITEN_LSH      3
+#define GPT_CR_STOPEN_LSH      5
+#define GPT_CR_CLKSRC_LSH      6
+#define GPT_CR_FRR_LSH         9
+#ifdef CPU_IMX6SX
+#define GPT_CR_EN_24M_LSH      10
+#elif defined(CPU_IMX6SDL)
+#define GPT_CR_EN_24M_LSH      10
+#endif
+#define GPT_CR_SWR_LSH         15
+#define GPT_CR_IM1_LSH         16
+#define GPT_CR_IM2_LSH         18
+#define GPT_CR_OM1_LSH         20
+#define GPT_CR_OM2_LSH         23
+#define GPT_CR_OM3_LSH         26
+#define GPT_CR_FO1_LSH         29
+#define GPT_CR_FO2_LSH         30
+#define GPT_CR_FO3_LSH         31
+
+#define GPT_PR_PRESCALER_LSH   0
+
+#define GPT_SR_OF1_LSH         0
+#define GPT_SR_OF2_LSH         1
+#define GPT_SR_OF3_LSH         2
+#define GPT_SR_IF1_LSH         3
+#define GPT_SR_IF2_LSH         4
+#define GPT_SR_ROV_LSH         5
+
+#define GPT_IR_OF1IE_LSH       0
+#define GPT_IR_OF2IE_LSH       1
+#define GPT_IR_OF3IE_LSH       2
+#define GPT_IR_IF1IE_LSH       3
+#define GPT_IR_IF2IE_LSH       4
+#define GPT_IR_ROVIE_LSH       5
+
+#define GPT_OCR1_COMP_LSH      0
+
+#define GPT_OCR2_COMP_LSH      0
+
+#define GPT_OCR3_COMP_LSH      0
+
+#define GPT_ICR1_CAPT_LSH      0
+
+#define GPT_ICR2_CAPT_LSH      0
+
+#define GPT_CNT_COUNT_LSH      0
+
+
+//------------------------------------------------------------------------------
+// REGISTER BIT FIELD WIDTHS
+//------------------------------------------------------------------------------
+#define GPT_CR_EN_WID          1
+#define GPT_CR_ENMOD_WID       1
+#define GPT_CR_DBGEN_WID       1
+#define GPT_CR_WAITEN_WID      1
+#define GPT_CR_STOPEN_WID      1
+#define GPT_CR_CLKSRC_WID      3
+#define GPT_CR_FRR_WID         1
+#ifdef CPU_IMX6SX
+#define GPT_CR_EN_24M_WID      1
+#elif defined(CPU_IMX6SDL)
+#define GPT_CR_EN_24M_WID      1
+#endif
+#define GPT_CR_SWR_WID         1
+#define GPT_CR_IM1_WID         2
+#define GPT_CR_IM2_WID         2
+#define GPT_CR_OM1_WID         3
+#define GPT_CR_OM2_WID         3
+#define GPT_CR_OM3_WID         3
+#define GPT_CR_FO1_WID         1
+#define GPT_CR_FO2_WID         1
+#define GPT_CR_FO3_WID         1
+
+#define GPT_PR_PRESCALER_WID   12
+
+#define GPT_SR_OF1_WID         1
+#define GPT_SR_OF2_WID         1
+#define GPT_SR_OF3_WID         1
+#define GPT_SR_IF1_WID         1
+#define GPT_SR_IF2_WID         1
+#define GPT_SR_ROV_WID         1
+
+#define GPT_IR_OF1IE_WID       1
+#define GPT_IR_OF2IE_WID       1
+#define GPT_IR_OF3IE_WID       1
+#define GPT_IR_IF1IE_WID       1
+#define GPT_IR_IF2IE_WID       1
+#define GPT_IR_ROVIE_WID       1
+
+#define GPT_OCR1_COMP_WID      32
+
+#define GPT_OCR2_COMP_WID      32
+
+#define GPT_OCR3_COMP_WID      32
+
+#define GPT_ICR1_CAPT_WID      32
+
+#define GPT_ICR2_CAPT_WID      32
+
+#define GPT_CNT_COUNT_WID      32
+
+
+//------------------------------------------------------------------------------
+// REGISTER BIT WRITE VALUES
+//------------------------------------------------------------------------------
+
+// GPTCR
+#define GPT_CR_EN_ENABLE                1 // GPT enabled
+#define GPT_CR_EN_DISABLE               0 // GPT disabled
+
+#define GPT_CR_ENMOD_RESET              1 // GPT counter reset to
+                                          // 0 when disabled
+#define GPT_CR_ENMOD_RETAIN             0 // GPT counter retains
+                                          // value when disabled
+
+#define GPT_CR_DBGEN_ENABLE             1 // GPT enabled in debug mode
+#define GPT_CR_DBGEN_DISABLE            0 // GPT disabled in debug mode
+
+#define GPT_CR_WAITEN_ENABLE            1 // GPT enabled in wait mode
+#define GPT_CR_WAITEN_DISABLE           0 // GPT disabled in wait mode
+
+#define GPT_CR_STOPEN_ENABLE            1 // GPT enabled in stopdoze mode
+#define GPT_CR_STOPEN_DISABLE           0 // GPT disabled in stopoze mode
+
+#if defined(CPU_IMX6DQ)
+#define GPT_CR_CLKSRC_NOCLK             0 // No clock to GPT
+#define GPT_CR_CLKSRC_IPGCLK            1 // ipg_clk is the clock source
+#define GPT_CR_CLKSRC_HIGHFREQ          2 // ipg_clk_highfreq
+#define GPT_CR_CLKSRC_EXTCLK            3 // ipp_gpt_clkin (external clock
+                                          // from pad) is the clock source
+#define GPT_CR_CLKSRC_CLK32K            4 // ipg_clk_32k is clock source
+#define GPT_CR_CLKSRC_CLK8M             5 // crystal oscillator divided by 8 is clock source
+#define GPT_CR_CLKSRC_CLK24M            7 // crystal oscillator (24 Mhz) is clock source
+#elif defined(CPU_IMX6SDL)
+#define GPT_CR_CLKSRC_NOCLK             0 // No clock to GPT
+#define GPT_CR_CLKSRC_IPGCLK            1 // Peripheral Clock
+#define GPT_CR_CLKSRC_HIGHFREQ          2 // High Frequency Reference Clock
+#define GPT_CR_CLKSRC_EXTCLK            3 // External Clock (CLKIN)
+#define GPT_CR_CLKSRC_LOWFREQ           4 // Low Frequency Reference Clock
+#define GPT_CR_CLKSRC_CLK24M            5 // Crystal oscillator as Reference Clock
+#elif defined(CPU_IMX6SX)
+#define GPT_CR_CLKSRC_NOCLK             0 // No clock to GPT
+#define GPT_CR_CLKSRC_PERIPHCLK         1 // Peripheral Clock
+#define GPT_CR_CLKSRC_HIGHFREQ          2 // High Frequency Reference Clock
+#define GPT_CR_CLKSRC_EXTCLK            3 // External Clock (CLKIN)
+#define GPT_CR_CLKSRC_LOWFREQ           4 // Low Frequency Reference Clock
+#define GPT_CR_CLKSRC_CLK24M            5 // Crystal oscillator as Reference Clock
+#else
+#error CPU Preprocessor Flag Not Defined
+#endif
+
+#define GPT_CR_FRR_FREERUN              1 // Freerun mode (counter
+                                          // continues after compare)
+#define GPT_CR_FRR_RESTART              0 // Restart mode (counter set
+                                          // to zero after compare)
+#if defined(CPU_IMX6SX) || defined(CPU_IMX6SDL)
+#define GPT_CR_EN_24M_DISABLE           0  // 24M clock disabled
+#define GPT_CR_EN_24M_ENABLE            1  // 24M clock enabled
+#endif
+
+#define GPT_CR_SWR_RESET                1 // Self-clearing software reset
+#define GPT_CR_SWR_NORESET              0 // Do not activate software reset
+
+#define GPT_CR_IM1_DISABLE              0 // Capture Disabled
+#define GPT_CR_IM1_EDGE_RISE            1 // Capture on rising edge
+#define GPT_CR_IM1_EDGE_FALL            2 // Capture on falling edge
+#define GPT_CR_IM1_EDGE_BOTH            3 // Capture on both edges
+
+#define GPT_CR_IM2_DISABLE              0 // Capture Disabled
+#define GPT_CR_IM2_EDGE_RISE            1 // Capture on rising edge
+#define GPT_CR_IM2_EDGE_FALL            2 // Capture on falling edge
+#define GPT_CR_IM2_EDGE_BOTH            3 // Capture on both edges
+
+#define GPT_CR_OM1_DISABLE              0 // Compare generates no response
+#define GPT_CR_OM1_TOGGLE               1 // Compare toggles output pin
+#define GPT_CR_OM1_CLEAR                2 // Compare clears output pin
+#define GPT_CR_OM1_SET                  3 // Compare sets output pin
+#define GPT_CR_OM1_PULSE                4 // Compare event generates a
+                                          // single count duration pulse
+                                          // on output pin
+
+#define GPT_CR_OM2_DISABLE              0 // Compare generates no response
+#define GPT_CR_OM2_TOGGLE               1 // Compare toggles output pin
+#define GPT_CR_OM2_CLEAR                2 // Compare clears output pin
+#define GPT_CR_OM2_SET                  3 // Compare sets output pin
+#define GPT_CR_OM2_PULSE                4 // Compare event generates a
+                                          // single count duration pulse
+                                          // on output pin
+
+#define GPT_CR_OM3_DISABLE              0 // Compare generates no response
+#define GPT_CR_OM3_TOGGLE               1 // Compare toggles output pin
+#define GPT_CR_OM3_CLEAR                2 // Compare clears output pin
+#define GPT_CR_OM3_SET                  3 // Compare sets output pin
+#define GPT_CR_OM3_PULSE                4 // Compare event generates a
+                                          // single count duration pulse
+                                          // on output pin
+
+#define GPT_CR_FO1_FORCE                1 // Force pin action programmed
+                                          // for output compare 1 pin.
+                                          // Pin is self-negating.
+#define GPT_CR_FO1_NOFORCE              0 // Do not force pin
+
+#define GPT_CR_FO2_FORCE                1 // Force pin action programmed
+                                          // for output compare 1 pin
+                                          // Pin is self-negating.
+#define GPT_CR_FO2_NOFORCE              0 // Do not force pin
+
+#define GPT_CR_FO3_FORCE                1 // Force pin action programmed
+                                          // for output compare 1 pin
+                                          // Pin is self-negating.
+#define GPT_CR_FO3_NOFORCE              0 // Do not force pin
+
+// GPTSR
+#define GPT_SR_OF1_STATUS_CLEAR         1 // Output compare 1 status clear
+#define GPT_SR_OF2_STATUS_CLEAR         1 // Output compare 2 status clear
+#define GPT_SR_OF3_STATUS_CLEAR         1 // Output compare 3 status clear
+#define GPT_SR_IF1_STATUS_CLEAR         1 // Input capture 1 status clear
+#define GPT_SR_IF2_STATUS_CLEAR         1 // Input capture 2 status clear
+#define GPT_SR_ROV_STATUS_CLEAR         1 // Rollover status clear
+
+// GPTIR
+#define GPT_IR_OF1IE_INT_ENABLE         1 // Output compare 1 int enabled
+#define GPT_IR_OF1IE_INT_DISABLE        0 // Output compare 1 int disabled
+
+#define GPT_IR_OF2IE_INT_ENABLE         1 // Output compare 2 int enabled
+#define GPT_IR_OF2IE_INT_DISABLE        0 // Output compare 2 int disabled
+
+#define GPT_IR_OF3IE_INT_ENABLE         1 // Output compare 3 int enabled
+#define GPT_IR_OF3IE_INT_DISABLE        0 // Output compare 3 int disabled
+
+#define GPT_IR_IF1IE_INT_ENABLE         1 // Input capture 1 int enabled
+#define GPT_IR_IF1IE_INT_DISABLE        0 // Input capture 1 int disabled
+
+#define GPT_IR_IF2IE_INT_ENABLE         1 // Input capture 2 int enabled
+#define GPT_IR_IF2IE_INT_DISABLE        0 // Input capture 2 int disabled
+
+#define GPT_IR_ROVIE_INT_ENABLE         1 // Rollover int enabled
+#define GPT_IR_ROVIE_INT_DISABLE        0 // Rollover int disabled
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // __COMMON_GPT_H
-- 
2.16.2.gvfs.1.33.gf5370f1



  parent reply	other threads:[~2018-07-20  6:33 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-20  6:33 [PATCH edk2-platforms 00/13] Silicon/NXP: Import NXP i.MX6 Package Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 01/13] Silicon/NXP: Add i.MX6 SoC header files Chris Co
2018-07-20  6:33 ` Chris Co [this message]
2018-07-20  6:33 ` [PATCH edk2-platforms 03/13] Silicon/NXP: Add iMX6Pkg dec Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 04/13] Silicon/NXP: Add i.MX6 Timer DXE driver Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 05/13] Silicon/NXP: Add i.MX6 GPT Timer library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 06/13] Silicon/NXP: Add i.MX6 USB Phy Library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 07/13] Silicon/NXP: Add i.MX6 I/O MUX library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 08/13] Silicon/NXP: Add i.MX6 Clock Library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 09/13] Silicon/NXP: Add i.MX6 ACPI tables Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 10/13] Silicon/NXP: Add i.MX6 Board init library Chris Co
2018-07-20  6:34 ` [PATCH edk2-platforms 11/13] Silicon/NXP: Add i.MX6 PCIe DXE driver Chris Co
2018-07-20  6:34 ` [PATCH edk2-platforms 12/13] Silicon/NXP: Add i.MX6 GOP driver Chris Co
2018-07-20  6:34 ` [PATCH edk2-platforms 13/13] Silicon/NXP: Add i.MX6 common dsc and fdf files Chris Co

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=20180720063328.26856-3-christopher.co@microsoft.com \
    --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