Apollo Register Documentation  v${version}
GPIO - General Purpose IO

GPIO Register Index

  0x00000000:   PADREGA - Pad Configuration Register A
  0x00000004:   PADREGB - Pad Configuration Register B
  0x00000008:   PADREGC - Pad Configuration Register C
  0x0000000C:   PADREGD - Pad Configuration Register D
  0x00000010:   PADREGE - Pad Configuration Register E
  0x00000014:   PADREGF - Pad Configuration Register F
  0x00000018:   PADREGG - Pad Configuration Register G
  0x0000001C:   PADREGH - Pad Configuration Register H
  0x00000020:   PADREGI - Pad Configuration Register I
  0x00000024:   PADREGJ - Pad Configuration Register J
  0x00000028:   PADREGK - Pad Configuration Register K
  0x0000002C:   PADREGL - Pad Configuration Register L
  0x00000030:   PADREGM - Pad Configuration Register M
  0x00000040:   CFGA - GPIO Configuration Register A
  0x00000044:   CFGB - GPIO Configuration Register B
  0x00000048:   CFGC - GPIO Configuration Register C
  0x0000004C:   CFGD - GPIO Configuration Register D
  0x00000050:   CFGE - GPIO Configuration Register E
  0x00000054:   CFGF - GPIO Configuration Register F
  0x00000058:   CFGG - GPIO Configuration Register G
  0x00000060:   PADKEY - Key Register for all pad configuration registers
  0x00000080:   RDA - GPIO Input Register A
  0x00000084:   RDB - GPIO Input Register B
  0x00000088:   WTA - GPIO Output Register A
  0x0000008C:   WTB - GPIO Output Register B
  0x00000090:   WTSA - GPIO Output Register A Set
  0x00000094:   WTSB - GPIO Output Register B Set
  0x00000098:   WTCA - GPIO Output Register A Clear
  0x0000009C:   WTCB - GPIO Output Register B Clear
  0x000000A0:   ENA - GPIO Enable Register A
  0x000000A4:   ENB - GPIO Enable Register B
  0x000000A8:   ENSA - GPIO Enable Register A Set
  0x000000AC:   ENSB - GPIO Enable Register B Set
  0x000000B4:   ENCA - GPIO Enable Register A Clear
  0x000000B8:   ENCB - GPIO Enable Register B Clear
  0x000000BC:   STMRCAP - STIMER Capture Control
  0x000000C0:   IOM0IRQ - IOM0 Flow Control IRQ Select
  0x000000C4:   IOM1IRQ - IOM1 Flow Control IRQ Select
  0x000000C8:   IOM2IRQ - IOM2 Flow Control IRQ Select
  0x000000CC:   IOM3IRQ - IOM3 Flow Control IRQ Select
  0x000000D0:   IOM4IRQ - IOM4 Flow Control IRQ Select
  0x000000D4:   IOM5IRQ - IOM5 Flow Control IRQ Select
  0x000000D8:   LOOPBACK - IOM to IOS Loopback Control
  0x000000DC:   GPIOOBS - GPIO Observation Mode Sample register
  0x000000E0:   ALTPADCFGA - Alternate Pad Configuration reg0 (Pads 3,2,1,0)
  0x000000E4:   ALTPADCFGB - Alternate Pad Configuration reg1 (Pads 7,6,5,4)
  0x000000E8:   ALTPADCFGC - Alternate Pad Configuration reg2 (Pads 11,10,9,8)
  0x000000EC:   ALTPADCFGD - Alternate Pad Configuration reg3 (Pads 15,14,13,12)
  0x000000F0:   ALTPADCFGE - Alternate Pad Configuration reg4 (Pads 19,18,17,16)
  0x000000F4:   ALTPADCFGF - Alternate Pad Configuration reg5 (Pads 23,22,21,20)
  0x000000F8:   ALTPADCFGG - Alternate Pad Configuration reg6 (Pads 27,26,25,24)
  0x000000FC:   ALTPADCFGH - Alternate Pad Configuration reg7 (Pads 31,30,29,28)
  0x00000100:   ALTPADCFGI - Alternate Pad Configuration reg8 (Pads 35,34,33,32)
  0x00000104:   ALTPADCFGJ - Alternate Pad Configuration reg9 (Pads 39,38,37,36)
  0x00000108:   ALTPADCFGK - Alternate Pad Configuration reg10 (Pads 43,42,41,40)
  0x0000010C:   ALTPADCFGL - Alternate Pad Configuration reg11 (Pads 47,46,45,44)
  0x00000110:   ALTPADCFGM - Alternate Pad Configuration reg12 (Pads 49,48)
  0x00000200:   INT0EN - GPIO Interrupt Registers 31-0: Enable
  0x00000204:   INT0STAT - GPIO Interrupt Registers 31-0: Status
  0x00000208:   INT0CLR - GPIO Interrupt Registers 31-0: Clear
  0x0000020C:   INT0SET - GPIO Interrupt Registers 31-0: Set
  0x00000210:   INT1EN - GPIO Interrupt Registers 49-32: Enable
  0x00000214:   INT1STAT - GPIO Interrupt Registers 49-32: Status
  0x00000218:   INT1CLR - GPIO Interrupt Registers 49-32: Clear
  0x0000021C:   INT1SET - GPIO Interrupt Registers 49-32: Set

PADREGA - Pad Configuration Register A

Address:

  Instance 0 Address:   0x40010000

Description:

This register controls the pad configuration controls for PAD3 through PAD0. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD3FNCSEL
0x3
PAD3STRNG
0x0
PAD3INPEN
0x0
PAD3PULL
0x0
RSVD
0x0
PAD2FNCSEL
0x3
PAD2STRNG
0x0
PAD2INPEN
0x0
PAD2PULL
0x0
PAD1RSEL
0x0
PAD1FNCSEL
0x3
PAD1STRNG
0x0
PAD1INPEN
0x0
PAD1PULL
0x0
PAD0RSEL
0x0
PAD0FNCSEL
0x3
PAD0STRNG
0x0
PAD0INPEN
0x0
PAD0PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD3FNCSEL RW Pad 3 function select

UA0RTS = 0x0 - Configure as the UART0 RTS output
SLnCE = 0x1 - Configure as the IOSLAVE SPI nCE signal
M1nCE4 = 0x2 - Configure as the SPI channel 4 nCE signal from IOMSTR1
GPIO3 = 0x3 - Configure as GPIO3
MxnCELB = 0x4 - Configure as the IOSLAVE SPI nCE loopback signal from IOMSTRx
M2nCE0 = 0x5 - Configure as the SPI channel 0 nCE signal from IOMSTR2
TRIG1 = 0x6 - Configure as the ADC Trigger 1 signal
I2S_WCLK = 0x7 - Configure as the I2S Word Clock input
26 PAD3STRNG RW Pad 3 drive strength.

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD3INPEN RW Pad 3 input enable.

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD3PULL RW Pad 3 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD2FNCSEL RW Pad 2 function select

SLWIR3 = 0x0 - Configure as the IOSLAVE SPI 3-wire MOSI/MISO signal
SLMOSI = 0x1 - Configure as the IOSLAVE SPI MOSI signal
UART0RX = 0x2 - Configure as the UART0 RX input
GPIO2 = 0x3 - Configure as GPIO2
MxMOSILB = 0x4 - Configure as the IOSLAVE SPI MOSI loopback signal from IOMSTRx
M2MOSI = 0x5 - Configure as the IOMSTR2 SPI MOSI output signal
MxWIR3LB = 0x6 - Configure as the IOSLAVE SPI 3-wire MOSI/MISO loopback signal from IOMSTRx
M2WIR3 = 0x7 - Configure as the IOMSTR2 SPI 3-wire MOSI/MISO signal
18 PAD2STRNG RW Pad 2 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD2INPEN RW Pad 2 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD2PULL RW Pad 2 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 PAD1RSEL RW Pad 1 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
13:11 PAD1FNCSEL RW Pad 1 function select

SLSDA = 0x0 - Configure as the IOSLAVE I2C SDA signal
SLMISO = 0x1 - Configure as the IOSLAVE SPI MISO signal
UART0TX = 0x2 - Configure as the UART0 TX output signal
GPIO1 = 0x3 - Configure as GPIO1
MxMISOLB = 0x4 - Configure as the IOSLAVE SPI MISO loopback signal from IOMSTRx
M2MISO = 0x5 - Configure as the IOMSTR2 SPI MISO input signal
MxSDALB = 0x6 - Configure as the IOSLAVE I2C SDA loopback signal from IOMSTRx
M2SDA = 0x7 - Configure as the IOMSTR2 I2C Serial data I/O signal
10 PAD1STRNG RW Pad 1 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD1INPEN RW Pad 1 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD1PULL RW Pad 1 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 PAD0RSEL RW Pad 0 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
5:3 PAD0FNCSEL RW Pad 0 function select

SLSCL = 0x0 - Configure as the IOSLAVE I2C SCL signal
SLSCK = 0x1 - Configure as the IOSLAVE SPI SCK signal
CLKOUT = 0x2 - Configure as the CLKOUT signal
GPIO0 = 0x3 - Configure as GPIO0
MxSCKLB = 0x4 - Configure as the IOSLAVE SPI SCK loopback signal from IOMSTRx
M2SCK = 0x5 - Configure as the IOMSTR2 SPI SCK output
MxSCLLB = 0x6 - Configure as the IOSLAVE I2C SCL loopback signal from IOMSTRx
M2SCL = 0x7 - Configure as the IOMSTR2 I2C SCL clock I/O signal
2 PAD0STRNG RW Pad 0 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD0INPEN RW Pad 0 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD0PULL RW Pad 0 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGB - Pad Configuration Register B

Address:

  Instance 0 Address:   0x40010004

Description:

This register controls the pad configuration controls for PAD7 through PAD4. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD7FNCSEL
0x3
PAD7STRNG
0x0
PAD7INPEN
0x0
PAD7PULL
0x0
PAD6RSEL
0x0
PAD6FNCSEL
0x3
PAD6STRNG
0x0
PAD6INPEN
0x0
PAD6PULL
0x0
PAD5RSEL
0x0
PAD5FNCSEL
0x3
PAD5STRNG
0x0
PAD5INPEN
0x0
PAD5PULL
0x0
PAD4PWRDN
0x0
RSVD
0x0
PAD4FNCSEL
0x3
PAD4STRNG
0x0
PAD4INPEN
0x0
PAD4PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD7FNCSEL RW Pad 7 function select

M0WIR3 = 0x0 - Configure as the IOMSTR0 SPI 3-wire MOSI/MISO signal
M0MOSI = 0x1 - Configure as the IOMSTR0 SPI MOSI signal
CLKOUT = 0x2 - Configure as the CLKOUT signal
GPIO7 = 0x3 - Configure as GPIO7
TRIG0 = 0x4 - Configure as the ADC Trigger 0 signal
UART0TX = 0x5 - Configure as the UART0 TX output signal
SLWIR3LB = 0x6 - Configure as the IOMSTR0 SPI 3-wire MOSI/MISO loopback signal from IOSLAVE
M1nCE1 = 0x7 - Configure as the SPI channel 1 nCE signal from IOMSTR1
26 PAD7STRNG RW Pad 7 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD7INPEN RW Pad 7 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD7PULL RW Pad 7 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 PAD6RSEL RW Pad 6 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
21:19 PAD6FNCSEL RW Pad 6 function select

M0SDA = 0x0 - Configure as the IOMSTR0 I2C SDA signal
M0MISO = 0x1 - Configure as the IOMSTR0 SPI MISO signal
UA0CTS = 0x2 - Configure as the UART0 CTS input signal
GPIO6 = 0x3 - Configure as GPIO6
SLMISOLB = 0x4 - Configure as the IOMSTR0 SPI MISO loopback signal from IOSLAVE
M1nCE0 = 0x5 - Configure as the SPI channel 0 nCE signal from IOMSTR1
SLSDALB = 0x6 - Configure as the IOMSTR0 I2C SDA loopback signal from IOSLAVE
I2S_DAT = 0x7 - Configure as the I2S Data output signal
18 PAD6STRNG RW Pad 6 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD6INPEN RW Pad 6 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD6PULL RW Pad 6 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 PAD5RSEL RW Pad 5 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
13:11 PAD5FNCSEL RW Pad 5 function select

M0SCL = 0x0 - Configure as the IOMSTR0 I2C SCL signal
M0SCK = 0x1 - Configure as the IOMSTR0 SPI SCK signal
UA0RTS = 0x2 - Configure as the UART0 RTS signal output
GPIO5 = 0x3 - Configure as GPIO5
M0SCKLB = 0x4 - Configure as the IOMSTR0 SPI SCK loopback signal from IOSLAVE
EXTHFA = 0x5 - Configure as the External HFA input clock
M0SCLLB = 0x6 - Configure as the IOMSTR0 I2C SCL loopback signal from IOSLAVE
M1nCE2 = 0x7 - Configure as the SPI Channel 2 nCE signal from IOMSTR1
10 PAD5STRNG RW Pad 5 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD5INPEN RW Pad 5 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD5PULL RW Pad 5 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7 PAD4PWRDN RW Pad 4 VSS power switch enable

DIS = 0x0 - Power switch disabled
EN = 0x1 - Power switch enabled (switch to GND)
6 RSVD RO RESERVED

5:3 PAD4FNCSEL RW Pad 4 function select

UA0CTS = 0x0 - Configure as the UART0 CTS input signal
SLINT = 0x1 - Configure as the IOSLAVE interrupt out signal
M0nCE5 = 0x2 - Configure as the SPI channel 5 nCE signal from IOMSTR0
GPIO4 = 0x3 - Configure as GPIO4
SLINTGP = 0x4 - Configure as the IOSLAVE interrupt loopback signal
M2nCE5 = 0x5 - Configure as the SPI channel 5 nCE signal from IOMSTR2
CLKOUT = 0x6 - Configure as the CLKOUT signal
32khz_XT = 0x7 - Configure as the 32kHz crystal output signal
2 PAD4STRNG RW Pad 4 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD4INPEN RW Pad 4 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD4PULL RW Pad 4 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGC - Pad Configuration Register C

Address:

  Instance 0 Address:   0x40010008

Description:

This register controls the pad configuration controls for PAD11 through PAD8. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD11FNCSEL
0x3
PAD11STRNG
0x0
PAD11INPEN
0x0
PAD11PULL
0x0
RSVD
0x0
PAD10FNCSEL
0x3
PAD10STRNG
0x0
PAD10INPEN
0x0
PAD10PULL
0x0
PAD9RSEL
0x0
PAD9FNCSEL
0x3
PAD9STRNG
0x0
PAD9INPEN
0x0
PAD9PULL
0x0
PAD8RSEL
0x0
PAD8FNCSEL
0x3
PAD8STRNG
0x0
PAD8INPEN
0x0
PAD8PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD11FNCSEL RW Pad 11 function select

ADCSE2 = 0x0 - Configure as the analog input for ADC single ended input 2
M0nCE0 = 0x1 - Configure as the SPI channel 0 nCE signal from IOMSTR0
CLKOUT = 0x2 - Configure as the CLKOUT signal
GPIO11 = 0x3 - Configure as GPIO11
M2nCE7 = 0x4 - Configure as the SPI channel 7 nCE signal from IOMSTR2
UA1CTS = 0x5 - Configure as the UART1 CTS input signal
UART0RX = 0x6 - Configure as the UART0 RX input signal
PDM_DATA = 0x7 - Configure as the PDM Data input signal
26 PAD11STRNG RW Pad 11 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD11INPEN RW Pad 11 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD11PULL RW Pad 11 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD10FNCSEL RW Pad 10 function select

M1WIR3 = 0x0 - Configure as the IOMSTR1 SPI 3-wire MOSI/MISO signal
M1MOSI = 0x1 - Configure as the IOMSTR1 SPI MOSI signal
M0nCE6 = 0x2 - Configure as the SPI channel 6 nCE signal from IOMSTR0
GPIO10 = 0x3 - Configure as GPIO10
M2nCE6 = 0x4 - Configure as the SPI channel 6 nCE signal from IOMSTR2
UA1RTS = 0x5 - Configure as the UART1 RTS output signal
M4nCE4 = 0x6 - Configure as the SPI channel 4 nCE signal from the IOMSTR4
SLWIR3LB = 0x7 - Configure as the IOMSTR1 SPI 3-wire MOSI/MISO loopback signal from IOSLAVE
18 PAD10STRNG RW Pad 10 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD10INPEN RW Pad 10 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD10PULL RW Pad 10 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 PAD9RSEL RW Pad 9 pullup resistor selection

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
13:11 PAD9FNCSEL RW Pad 9 function select

M1SDA = 0x0 - Configure as the IOMSTR1 I2C SDA signal
M1MISO = 0x1 - Configure as the IOMSTR1 SPI MISO signal
M0nCE5 = 0x2 - Configure as the SPI channel 5 nCE signal from IOMSTR0
GPIO9 = 0x3 - Configure as GPIO9
M4nCE5 = 0x4 - Configure as the SPI channel 5 nCE signal from IOMSTR4
SLMISOLB = 0x5 - Configure as the IOMSTR1 SPI MISO loopback signal from IOSLAVE
UART1RX = 0x6 - Configure as UART1 RX input signal
SLSDALB = 0x7 - Configure as the IOMSTR1 I2C SDA loopback signal from IOSLAVE
10 PAD9STRNG RW Pad 9 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD9INPEN RW Pad 9 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD9PULL RW Pad 9 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 PAD8RSEL RW Pad 8 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
5:3 PAD8FNCSEL RW Pad 8 function select

M1SCL = 0x0 - Configure as the IOMSTR1 I2C SCL signal
M1SCK = 0x1 - Configure as the IOMSTR1 SPI SCK signal
M0nCE4 = 0x2 - Configure as the SPI channel 4 nCE signal from IOMSTR0
GPIO8 = 0x3 - Configure as GPIO8
M2nCE4 = 0x4 - Configure as the SPI channel 4 nCE signal from IOMSTR2
M1SCKLB = 0x5 - Configure as the IOMSTR1 SPI SCK loopback signal from IOSLAVE
UART1TX = 0x6 - Configure as the UART1 TX output signal
M1SCLLB = 0x7 - Configure as the IOMSTR1 I2C SCL loopback signal from IOSLAVE
2 PAD8STRNG RW Pad 8 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD8INPEN RW Pad 8 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD8PULL RW Pad 8 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGD - Pad Configuration Register D

Address:

  Instance 0 Address:   0x4001000C

Description:

This register controls the pad configuration controls for PAD15 through PAD12. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD15FNCSEL
0x3
PAD15STRNG
0x0
PAD15INPEN
0x0
PAD15PULL
0x0
RSVD
0x0
PAD14FNCSEL
0x3
PAD14STRNG
0x0
PAD14INPEN
0x0
PAD14PULL
0x0
RSVD
0x0
PAD13FNCSEL
0x3
PAD13STRNG
0x0
PAD13INPEN
0x0
PAD13PULL
0x0
RSVD
0x0
PAD12FNCSEL
0x3
PAD12STRNG
0x0
PAD12INPEN
0x0
PAD12PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD15FNCSEL RW Pad 15 function select

ADCD1N = 0x0 - Configure as the analog ADC differential pair 1 N input signal
M1nCE3 = 0x1 - Configure as the SPI channel 3 nCE signal from IOMSTR1
UART1RX = 0x2 - Configure as the UART1 RX signal
GPIO15 = 0x3 - Configure as GPIO15
M2nCE2 = 0x4 - Configure as the SPI Channel 2 nCE signal from IOMSTR2
EXTXT = 0x5 - Configure as the external XTAL oscillator input
SWDIO = 0x6 - Configure as an alternate port for the SWDIO I/O signal
SWO = 0x7 - Configure as an SWO (Serial Wire Trace output)
26 PAD15STRNG RW Pad 15 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD15INPEN RW Pad 15 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD15PULL RW Pad 15 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD14FNCSEL RW Pad 14 function select

ADCD1P = 0x0 - Configure as the analog ADC differential pair 1 P input signal
M1nCE2 = 0x1 - Configure as the SPI channel 2 nCE signal from IOMSTR1
UART1TX = 0x2 - Configure as the UART1 TX output signal
GPIO14 = 0x3 - Configure as GPIO14
M2nCE1 = 0x4 - Configure as the SPI channel 1 nCE signal from IOMSTR2
EXTHFS = 0x5 - Configure as the External HFRC oscillator input select
SWDCK = 0x6 - Configure as the alternate input for the SWDCK input signal
32khz_XT = 0x7 - Configure as the 32kHz crystal output signal
18 PAD14STRNG RW Pad 14 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD14INPEN RW Pad 14 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD14PULL RW Pad 14 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD13FNCSEL RW Pad 13 function select

ADCD0PSE8 = 0x0 - Configure as the ADC Differential pair 0 P, or Single Ended input 8 analog input signal. Determination of the D0P vs SE8 usage is done when the particular channel is selected within the ADC module
M1nCE1 = 0x1 - Configure as the SPI channel 1 nCE signal from IOMSTR1
TCTB0 = 0x2 - Configure as the input/output signal from CTIMER B0
GPIO13 = 0x3 - Configure as GPIO13
M2nCE3 = 0x4 - Configure as the SPI channel 3 nCE signal from IOMSTR2
EXTHFB = 0x5 - Configure as the external HFRC oscillator input
UA0RTS = 0x6 - Configure as the UART0 RTS signal output
UART1RX = 0x7 - Configure as the UART1 RX input signal
10 PAD13STRNG RW Pad 13 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD13INPEN RW Pad 13 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD13PULL RW Pad 13 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD12FNCSEL RW Pad 12 function select

ADCD0NSE9 = 0x0 - Configure as the ADC Differential pair 0 N, or Single Ended input 9 analog input signal. Determination of the D0N vs SE9 usage is done when the particular channel is selected within the ADC module
M1nCE0 = 0x1 - Configure as the SPI channel 0 nCE signal from IOMSTR1
TCTA0 = 0x2 - Configure as the input/output signal from CTIMER A0
GPIO12 = 0x3 - Configure as GPIO12
CLKOUT = 0x4 - Configure as CLKOUT signal
PDM_CLK = 0x5 - Configure as the PDM CLK output signal
UA0CTS = 0x6 - Configure as the UART0 CTS input signal
UART1TX = 0x7 - Configure as the UART1 TX output signal
2 PAD12STRNG RW Pad 12 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD12INPEN RW Pad 12 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD12PULL RW Pad 12 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGE - Pad Configuration Register E

Address:

  Instance 0 Address:   0x40010010

Description:

This register controls the pad configuration controls for PAD19 through PAD16. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD19FNCSEL
0x3
PAD19STRNG
0x0
PAD19INPEN
0x0
PAD19PULL
0x0
RSVD
0x0
PAD18FNCSEL
0x3
PAD18STRNG
0x0
PAD18INPEN
0x0
PAD18PULL
0x0
RSVD
0x0
PAD17FNCSEL
0x3
PAD17STRNG
0x0
PAD17INPEN
0x0
PAD17PULL
0x0
RSVD
0x0
PAD16FNCSEL
0x3
PAD16STRNG
0x0
PAD16INPEN
0x0
PAD16PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD19FNCSEL RW Pad 19 function select

CMPRF0 = 0x0 - Configure as the analog comparator reference 0 signal
M0nCE3 = 0x1 - Configure as the SPI channel 3 nCE signal from IOMSTR0
TCTB1 = 0x2 - Configure as the input/output signal from CTIMER B1
GPIO19 = 0x3 - Configure as GPIO19
TCTA1 = 0x4 - Configure as the input/output signal from CTIMER A1
ANATEST1 = 0x5 - Configure as the ANATEST1 I/O signal
UART1RX = 0x6 - Configure as the UART1 RX input signal
I2S_BCLK = 0x7 - Configure as the I2S Byte clock input signal
26 PAD19STRNG RW Pad 19 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD19INPEN RW Pad 19 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD19PULL RW Pad 19 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD18FNCSEL RW Pad 18 function select

CMPIN1 = 0x0 - Configure as the analog comparator input 1 signal
M0nCE2 = 0x1 - Configure as the SPI channel 2 nCE signal from IOMSTR0
TCTA1 = 0x2 - Configure as the input/output signal from CTIMER A1
GPIO18 = 0x3 - Configure as GPIO18
M4nCE1 = 0x4 - Configure as the SPI nCE channel 1 from IOMSTR4
ANATEST2 = 0x5 - Configure as ANATEST2 I/O signal
UART1TX = 0x6 - Configure as UART1 TX output signal
32khz_XT = 0x7 - Configure as the 32kHz output clock from the crystal
18 PAD18STRNG RW Pad 18 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD18INPEN RW Pad 18 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD18PULL RW Pad 18 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD17FNCSEL RW Pad 17 function select

CMPRF1 = 0x0 - Configure as the analog comparator reference signal 1 input signal
M0nCE1 = 0x1 - Configure as the SPI channel 1 nCE signal from IOMSTR0
TRIG1 = 0x2 - Configure as the ADC Trigger 1 signal
GPIO17 = 0x3 - Configure as GPIO17
M4nCE3 = 0x4 - Configure as the SPI channel 3 nCE signal from IOMSTR4
EXTLF = 0x5 - Configure as external LFRC oscillator input
UART0RX = 0x6 - Configure as UART0 RX input signal
UA1CTS = 0x7 - Configure as UART1 CTS input signal
10 PAD17STRNG RW Pad 17 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD17INPEN RW Pad 17 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD17PULL RW Pad 17 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD16FNCSEL RW Pad 16 function select

ADCSE0 = 0x0 - Configure as the analog ADC single ended port 0 input signal
M0nCE4 = 0x1 - Configure as the SPI channel 4 nCE signal from IOMSTR0
TRIG0 = 0x2 - Configure as the ADC Trigger 0 signal
GPIO16 = 0x3 - Configure as GPIO16
M2nCE3 = 0x4 - Configure as SPI channel 3 nCE for IOMSTR2
CMPIN0 = 0x5 - Configure as comparator input 0 signal
UART0TX = 0x6 - Configure as UART0 TX output signal
UA1RTS = 0x7 - Configure as UART1 RTS output signal
2 PAD16STRNG RW Pad 16 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD16INPEN RW Pad 16 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD16PULL RW Pad 16 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGF - Pad Configuration Register F

Address:

  Instance 0 Address:   0x40010014

Description:

This register controls the pad configuration controls for PAD23 through PAD20. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD23FNCSEL
0x3
PAD23STRNG
0x0
PAD23INPEN
0x0
PAD23PULL
0x0
PAD22PWRUP
0x0
RSVD
0x0
PAD22FNCSEL
0x3
PAD22STRNG
0x0
PAD22INPEN
0x0
PAD22PULL
0x0
RSVD
0x0
PAD21FNCSEL
0x0
PAD21STRNG
0x0
PAD21INPEN
0x1
PAD21PULL
0x0
RSVD
0x0
PAD20FNCSEL
0x0
PAD20STRNG
0x0
PAD20INPEN
0x1
PAD20PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD23FNCSEL RW Pad 23 function select

UART0RX = 0x0 - Configure as the UART0 RX signal
M0nCE0 = 0x1 - Configure as the SPI channel 0 nCE signal from IOMSTR0
TCTB3 = 0x2 - Configure as the input/output signal from CTIMER B3
GPIO23 = 0x3 - Configure as GPIO23
PDM_DATA = 0x4 - Configure as PDM Data input to the PDM module
CMPOUT = 0x5 - Configure as voltage comparitor output
TCTB1 = 0x6 - Configure as the input/output signal from CTIMER B1
UNDEF7 = 0x7 - Undefined/should not be used
26 PAD23STRNG RW Pad 23 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD23INPEN RW Pad 23 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD23PULL RW Pad 23 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23 PAD22PWRUP RW Pad 22 upper power switch enable

DIS = 0x0 - Power switch disabled
EN = 0x1 - Power switch enabled
22 RSVD RO RESERVED

21:19 PAD22FNCSEL RW Pad 22 function select

UART0TX = 0x0 - Configure as the UART0 TX signal
M1nCE7 = 0x1 - Configure as the SPI channel 7 nCE signal from IOMSTR1
TCTA3 = 0x2 - Configure as the input/output signal from CTIMER A3
GPIO22 = 0x3 - Configure as GPIO22
PDM_CLK = 0x4 - Configure as the PDM CLK output
UNDEF5 = 0x5 - Undefined/should not be used
TCTB1 = 0x6 - Configure as the input/output signal from CTIMER B1
SWO = 0x7 - Configure as the serial trace data output signal
18 PAD22STRNG RW Pad 22 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD22INPEN RW Pad 22 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD22PULL RW Pad 22 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD21FNCSEL RW Pad 21 function select

SWDIO = 0x0 - Configure as the serial wire debug data signal
M1nCE6 = 0x1 - Configure as the SPI channel 6 nCE signal from IOMSTR1
TCTB2 = 0x2 - Configure as the input/output signal from CTIMER B2
GPIO21 = 0x3 - Configure as GPIO21
UART0RX = 0x4 - Configure as UART0 RX input signal
UART1RX = 0x5 - Configure as UART1 RX input signal
UNDEF6 = 0x6 - Undefined/should not be used
UNDEF7 = 0x7 - Undefined/should not be used
10 PAD21STRNG RW Pad 21 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD21INPEN RW Pad 21 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD21PULL RW Pad 21 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD20FNCSEL RW Pad 20 function select

SWDCK = 0x0 - Configure as the serial wire debug clock signal
M1nCE5 = 0x1 - Configure as the SPI channel 5 nCE signal from IOMSTR1
TCTA2 = 0x2 - Configure as the input/output signal from CTIMER A2
GPIO20 = 0x3 - Configure as GPIO20
UART0TX = 0x4 - Configure as UART0 TX output signal
UART1TX = 0x5 - Configure as UART1 TX output signal
UNDEF6 = 0x6 - Undefined/should not be used
UNDEF7 = 0x7 - Undefined/should not be used
2 PAD20STRNG RW Pad 20 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD20INPEN RW Pad 20 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD20PULL RW Pad 20 pulldown enable

DIS = 0x0 - Pulldown disabled
EN = 0x1 - Pulldown enabled

PADREGG - Pad Configuration Register G

Address:

  Instance 0 Address:   0x40010018

Description:

This register controls the pad configuration controls for PAD27 through PAD24. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
PAD27RSEL
0x0
PAD27FNCSEL
0x3
PAD27STRNG
0x0
PAD27INPEN
0x0
PAD27PULL
0x0
RSVD
0x0
PAD26FNCSEL
0x3
PAD26STRNG
0x0
PAD26INPEN
0x0
PAD26PULL
0x0
PAD25RSEL
0x0
PAD25FNCSEL
0x3
PAD25STRNG
0x0
PAD25INPEN
0x0
PAD25PULL
0x0
RSVD
0x0
PAD24FNCSEL
0x3
PAD24STRNG
0x0
PAD24INPEN
0x0
PAD24PULL
0x0

Bits Name RW Description
31:30 PAD27RSEL RW Pad 27 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
29:27 PAD27FNCSEL RW Pad 27 function select

EXTHF = 0x0 - Configure as the external HFRC oscillator input
M1nCE4 = 0x1 - Configure as the SPI channel 4 nCE signal from IOMSTR1
TCTA1 = 0x2 - Configure as the input/output signal from CTIMER A1
GPIO27 = 0x3 - Configure as GPIO27
M2SCL = 0x4 - Configure as I2C clock I/O signal from IOMSTR2
M2SCK = 0x5 - Configure as SPI clock output signal from IOMSTR2
M2SCKLB = 0x6 - Configure as IOMSTR2 SPI SCK loopback signal from IOSLAVE
M2SCLLB = 0x7 - Configure as IOMSTR2 I2C SCL loopback signal from IOSLAVE
26 PAD27STRNG RW Pad 27 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD27INPEN RW Pad 27 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD27PULL RW Pad 27 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD26FNCSEL RW Pad 26 function select

EXTLF = 0x0 - Configure as the external LFRC oscillator input
M0nCE3 = 0x1 - Configure as the SPI channel 3 nCE signal from IOMSTR0
TCTB0 = 0x2 - Configure as the input/output signal from CTIMER B0
GPIO26 = 0x3 - Configure as GPIO26
M2nCE0 = 0x4 - Configure as the SPI channel 0 nCE signal from IOMSTR2
TCTA1 = 0x5 - Configure as the input/output signal from CTIMER A1
M5nCE1 = 0x6 - Configure as the SPI channel 1 nCE signal from IOMSTR5
M3nCE0 = 0x7 - Configure as the SPI channel 0 nCE signal from IOMSTR3
18 PAD26STRNG RW Pad 26 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD26INPEN RW Pad 26 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD26PULL RW Pad 26 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 PAD25RSEL RW Pad 25 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
13:11 PAD25FNCSEL RW Pad 25 function select

EXTXT = 0x0 - Configure as the external XTAL oscillator input
M0nCE2 = 0x1 - Configure as the SPI channel 2 nCE signal from IOMSTR0
TCTA0 = 0x2 - Configure as the input/output signal from CTIMER A0
GPIO25 = 0x3 - Configure as GPIO25
M2SDA = 0x4 - Configure as the IOMSTR2 I2C Serial data I/O signal
M2MISO = 0x5 - Configure as the IOMSTR2 SPI MISO input signal
SLMISOLB = 0x6 - Configure as the IOMSTR0 SPI MISO loopback signal from IOSLAVE
SLSDALB = 0x7 - Configure as the IOMSTR0 I2C SDA loopback signal from IOSLAVE
10 PAD25STRNG RW Pad 25 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD25INPEN RW Pad 25 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD25PULL RW Pad 25 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD24FNCSEL RW Pad 24 function select

M2nCE1 = 0x0 - Configure as the SPI channel 1 nCE signal from IOMSTR2
M0nCE1 = 0x1 - Configure as the SPI channel 1 nCE signal from IOMSTR0
CLKOUT = 0x2 - Configure as the CLKOUT signal
GPIO24 = 0x3 - Configure as GPIO24
M5nCE0 = 0x4 - Configure as the SPI channel 0 nCE signal from IOMSTR5
TCTA1 = 0x5 - Configure as the input/output signal from CTIMER A1
I2S_BCLK = 0x6 - Configure as the I2S Byte clock input signal
SWO = 0x7 - Configure as the serial trace data output signal
2 PAD24STRNG RW Pad 24 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD24INPEN RW Pad 24 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD24PULL RW Pad 24 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGH - Pad Configuration Register H

Address:

  Instance 0 Address:   0x4001001C

Description:

This register controls the pad configuration controls for PAD31 through PAD28. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD31FNCSEL
0x3
PAD31STRNG
0x0
PAD31INPEN
0x0
PAD31PULL
0x0
RSVD
0x0
PAD30FNCSEL
0x3
PAD30STRNG
0x0
PAD30INPEN
0x0
PAD30PULL
0x0
RSVD
0x0
PAD29FNCSEL
0x3
PAD29STRNG
0x0
PAD29INPEN
0x0
PAD29PULL
0x0
RSVD
0x0
PAD28FNCSEL
0x3
PAD28STRNG
0x0
PAD28INPEN
0x0
PAD28PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD31FNCSEL RW Pad 31 function select

ADCSE3 = 0x0 - Configure as the analog input for ADC single ended input 3
M0nCE4 = 0x1 - Configure as the SPI channel 4 nCE signal from IOMSTR0
TCTA3 = 0x2 - Configure as the input/output signal from CTIMER A3
GPIO31 = 0x3 - Configure as GPIO31
UART0RX = 0x4 - Configure as the UART0 RX input signal
TCTB1 = 0x5 - Configure as the input/output signal from CTIMER B1
UNDEF6 = 0x6 - Undefined/should not be used
UNDEF7 = 0x7 - Undefined/should not be used
26 PAD31STRNG RW Pad 31 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD31INPEN RW Pad 31 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD31PULL RW Pad 31 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD30FNCSEL RW Pad 30 function select

UNDEF0 = 0x0 - Undefined/should not be used
M1nCE7 = 0x1 - Configure as the SPI channel 7 nCE signal from IOMSTR1
TCTB2 = 0x2 - Configure as the input/output signal from CTIMER B2
GPIO30 = 0x3 - Configure as GPIO30
UART0TX = 0x4 - Configure as UART0 TX output signal
UA1RTS = 0x5 - Configure as UART1 RTS output signal
UNDEF6 = 0x6 - Undefined/should not be used
I2S_DAT = 0x7 - Configure as the I2S Data output signal
18 PAD30STRNG RW Pad 30 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD30INPEN RW Pad 30 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD30PULL RW Pad 30 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD29FNCSEL RW Pad 29 function select

ADCSE1 = 0x0 - Configure as the analog input for ADC single ended input 1
M1nCE6 = 0x1 - Configure as the SPI channel 6 nCE signal from IOMSTR1
TCTA2 = 0x2 - Configure as the input/output signal from CTIMER A2
GPIO29 = 0x3 - Configure as GPIO29
UA0CTS = 0x4 - Configure as the UART0 CTS signal
UA1CTS = 0x5 - Configure as the UART1 CTS signal
M4nCE0 = 0x6 - Configure as the SPI channel 0 nCE signal from IOMSTR4
PDM_DATA = 0x7 - Configure as PDM DATA input
10 PAD29STRNG RW Pad 29 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD29INPEN RW Pad 29 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD29PULL RW Pad 29 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD28FNCSEL RW Pad 28 function select

I2S_WCLK = 0x0 - Configure as the I2S Word Clock input
M1nCE5 = 0x1 - Configure as the SPI channel 5 nCE signal from IOMSTR1
TCTB1 = 0x2 - Configure as the input/output signal from CTIMER B1
GPIO28 = 0x3 - Configure as GPIO28
M2WIR3 = 0x4 - Configure as the IOMSTR2 SPI 3-wire MOSI/MISO signal
M2MOSI = 0x5 - Configure as the IOMSTR2 SPI MOSI output signal
M5nCE3 = 0x6 - Configure as the SPI channel 3 nCE signal from IOMSTR5
SLWIR3LB = 0x7 - Configure as the IOMSTR2 SPI 3-wire MOSI/MISO loopback signal from IOSLAVE
2 PAD28STRNG RW Pad 28 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD28INPEN RW Pad 28 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD28PULL RW Pad 28 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGI - Pad Configuration Register I

Address:

  Instance 0 Address:   0x40010020

Description:

This register controls the pad configuration controls for PAD35 through PAD32. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD35FNCSEL
0x3
PAD35STRNG
0x0
PAD35INPEN
0x0
PAD35PULL
0x0
RSVD
0x0
PAD34FNCSEL
0x3
PAD34STRNG
0x0
PAD34INPEN
0x0
PAD34PULL
0x0
RSVD
0x0
PAD33FNCSEL
0x3
PAD33STRNG
0x0
PAD33INPEN
0x0
PAD33PULL
0x0
RSVD
0x0
PAD32FNCSEL
0x3
PAD32STRNG
0x0
PAD32INPEN
0x0
PAD32PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD35FNCSEL RW Pad 35 function select

ADCSE7 = 0x0 - Configure as the analog input for ADC single ended input 7
M1nCE0 = 0x1 - Configure as the SPI channel 0 nCE signal from IOMSTR1
UART1TX = 0x2 - Configure as the UART1 TX signal
GPIO35 = 0x3 - Configure as GPIO35
M4nCE6 = 0x4 - Configure as the SPI channel 6 nCE signal from IOMSTR4
TCTA1 = 0x5 - Configure as the input/output signal from CTIMER A1
UA0RTS = 0x6 - Configure as the UART0 RTS output
M3nCE2 = 0x7 - Configure as the SPI channel 2 nCE signal from IOMSTR3
26 PAD35STRNG RW Pad 35 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD35INPEN RW Pad 35 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD35PULL RW Pad 35 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD34FNCSEL RW Pad 34 function select

ADCSE6 = 0x0 - Configure as the analog input for ADC single ended input 6
M0nCE7 = 0x1 - Configure as the SPI channel 7 nCE signal from IOMSTR0
M2nCE3 = 0x2 - Configure as the SPI channel 3 nCE signal from IOMSTR2
GPIO34 = 0x3 - Configure as GPIO34
CMPRF2 = 0x4 - Configure as the analog comparator reference 2 signal
M3nCE1 = 0x5 - Configure as the SPI channel 1 nCE signal from IOMSTR3
M4nCE0 = 0x6 - Configure as the SPI channel 0 nCE signal from IOMSTR4
M5nCE2 = 0x7 - Configure as the SPI channel 2 nCE signal from IOMSTR5
18 PAD34STRNG RW Pad 34 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD34INPEN RW Pad 34 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD34PULL RW Pad 34 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD33FNCSEL RW Pad 33 function select

ADCSE5 = 0x0 - Configure as the analog ADC single ended port 5 input signal
M0nCE6 = 0x1 - Configure as the SPI channel 6 nCE signal from IOMSTR0
32khz_XT = 0x2 - Configure as the 32kHz crystal output signal
GPIO33 = 0x3 - Configure as GPIO33
UNDEF4 = 0x4 - Undefined/should not be used
M3nCE7 = 0x5 - Configure as the SPI channel 7 nCE signal from IOMSTR3
TCTB1 = 0x6 - Configure as the input/output signal from CTIMER B1
SWO = 0x7 - Configure as the serial trace data output signal
10 PAD33STRNG RW Pad 33 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD33INPEN RW Pad 33 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD33PULL RW Pad 33 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD32FNCSEL RW Pad 32 function select

ADCSE4 = 0x0 - Configure as the analog input for ADC single ended input 4
M0nCE5 = 0x1 - Configure as the SPI channel 5 nCE signal from IOMSTR0
TCTB3 = 0x2 - Configure as the input/output signal from CTIMER B3
GPIO32 = 0x3 - Configure as GPIO32
UNDEF4 = 0x4 - Undefined/should not be used
TCTB1 = 0x5 - Configure as the input/output signal from CTIMER B1
UNDEF6 = 0x6 - Undefined/should not be used
UNDEF7 = 0x7 - Undefined/should not be used
2 PAD32STRNG RW Pad 32 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD32INPEN RW Pad 32 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD32PULL RW Pad 32 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGJ - Pad Configuration Register J

Address:

  Instance 0 Address:   0x40010024

Description:

This register controls the pad configuration controls for PAD39 through PAD36. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
PAD39RSEL
0x0
PAD39FNCSEL
0x3
PAD39STRNG
0x0
PAD39INPEN
0x0
PAD39PULL
0x0
RSVD
0x0
PAD38FNCSEL
0x3
PAD38STRNG
0x0
PAD38INPEN
0x0
PAD38PULL
0x0
RSVD
0x0
PAD37FNCSEL
0x3
PAD37STRNG
0x0
PAD37INPEN
0x0
PAD37PULL
0x0
RSVD
0x0
PAD36FNCSEL
0x3
PAD36STRNG
0x0
PAD36INPEN
0x0
PAD36PULL
0x0

Bits Name RW Description
31:30 PAD39RSEL RW Pad 39 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
29:27 PAD39FNCSEL RW Pad 39 function select

UART0TX = 0x0 - Configure as the UART0 TX Signal
UART1TX = 0x1 - Configure as the UART1 TX signal
CLKOUT = 0x2 - Configure as the CLKOUT signal
GPIO39 = 0x3 - Configure as GPIO39
M4SCL = 0x4 - Configure as the IOMSTR4 I2C SCL signal
M4SCK = 0x5 - Configure as the IOMSTR4 SPI SCK signal
M4SCKLB = 0x6 - Configure as the IOMSTR4 SPI SCK loopback signal from IOSLAVE
M4SCLLB = 0x7 - Configure as the IOMSTR4 I2C SCL loopback signal from IOSLAVE
26 PAD39STRNG RW Pad 39 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD39INPEN RW Pad 39 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD39PULL RW Pad 39 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD38FNCSEL RW Pad 38 function select

TRIG3 = 0x0 - Configure as the ADC Trigger 3 signal
M1nCE3 = 0x1 - Configure as the SPI channel 3 nCE signal from IOMSTR1
UA0CTS = 0x2 - Configure as the UART0 CTS signal
GPIO38 = 0x3 - Configure as GPIO38
M3WIR3 = 0x4 - Configure as the IOSLAVE SPI 3-wire MOSI/MISO signal
M3MOSI = 0x5 - Configure as the IOMSTR3 SPI MOSI output signal
M4nCE7 = 0x6 - Configure as the SPI channel 7 nCE signal from IOMSTR4
SLWIR3LB = 0x7 - Configure as the IOMSTR3 SPI 3-wire MOSI/MISO loopback signal from IOSLAVE
18 PAD38STRNG RW Pad 38 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD38INPEN RW Pad 38 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD38PULL RW Pad 38 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD37FNCSEL RW Pad 37 function select

TRIG2 = 0x0 - Configure as the ADC Trigger 2 signal
M1nCE2 = 0x1 - Configure as the SPI channel 2 nCE signal from IOMSTR1
UA0RTS = 0x2 - Configure as the UART0 RTS signal
GPIO37 = 0x3 - Configure as GPIO37
M3nCE4 = 0x4 - Configure as the SPI channel 4 nCE signal from IOMSTR3
M4nCE1 = 0x5 - Configure as the SPI channel 1 nCE signal from IOMSTR4
PDM_CLK = 0x6 - Configure as the PDM CLK output signal
TCTA1 = 0x7 - Configure as the input/output signal from CTIMER A1
10 PAD37STRNG RW Pad 37 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD37INPEN RW Pad 37 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD37PULL RW Pad 37 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD36FNCSEL RW Pad 36 function select

TRIG1 = 0x0 - Configure as the ADC Trigger 1 signal
M1nCE1 = 0x1 - Configure as the SPI channel 1 nCE signal from IOMSTR1
UART1RX = 0x2 - Configure as the UART1 RX signal
GPIO36 = 0x3 - Configure as GPIO36
32khz_XT = 0x4 - Configure as the 32kHz output clock from the crystal
M2nCE0 = 0x5 - Configure as the SPI channel 0 nCE signal from IOMSTR2
UA0CTS = 0x6 - Configure as the UART0 CTS signal
M3nCE3 = 0x7 - Configure as the SPI channel 3 nCE signal from IOMSTR3
2 PAD36STRNG RW Pad 36 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD36INPEN RW Pad 36 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD36PULL RW Pad 36 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGK - Pad Configuration Register K

Address:

  Instance 0 Address:   0x40010028

Description:

This register controls the pad configuration controls for PAD43 through PAD40. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
PAD43RSEL
0x0
PAD43FNCSEL
0x3
PAD43STRNG
0x0
PAD43INPEN
0x0
PAD43PULL
0x0
PAD42RSEL
0x0
PAD42FNCSEL
0x3
PAD42STRNG
0x0
PAD42INPEN
0x0
PAD42PULL
0x0
PAD41PWRUP
0x0
RSVD
0x0
PAD41FNCSEL
0x3
PAD41STRNG
0x0
PAD41INPEN
0x0
PAD41PULL
0x0
PAD40RSEL
0x0
PAD40FNCSEL
0x3
PAD40STRNG
0x0
PAD40INPEN
0x0
PAD40PULL
0x0

Bits Name RW Description
31:30 PAD43RSEL RW Pad 43 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
29:27 PAD43FNCSEL RW Pad 43 function select

M2nCE4 = 0x0 - Configure as the SPI channel 4 nCE signal from IOMSTR2
M0nCE1 = 0x1 - Configure as the SPI channel 1 nCE signal from IOMSTR0
TCTB0 = 0x2 - Configure as the input/output signal from CTIMER B0
GPIO43 = 0x3 - Configure as GPIO43
M3SDA = 0x4 - Configure as the IOMSTR3 I2C SDA signal
M3MISO = 0x5 - Configure as the IOMSTR3 SPI MISO signal
SLMISOLB = 0x6 - Configure as the IOMSTR3 SPI MISO loopback signal from IOSLAVE
SLSDALB = 0x7 - Configure as the IOMSTR3 I2C SDA loopback signal from IOSLAVE
26 PAD43STRNG RW Pad 43 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD43INPEN RW Pad 43 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD43PULL RW Pad 43 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 PAD42RSEL RW Pad 42 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
21:19 PAD42FNCSEL RW Pad 42 function select

M2nCE2 = 0x0 - Configure as the SPI channel 2 nCE signal from IOMSTR2
M0nCE0 = 0x1 - Configure as the SPI channel 0 nCE signal from IOMSTR0
TCTA0 = 0x2 - Configure as the input/output signal from CTIMER A0
GPIO42 = 0x3 - Configure as GPIO42
M3SCL = 0x4 - Configure as the IOMSTR3 I2C SCL clock I/O signal
M3SCK = 0x5 - Configure as the IOMSTR3 SPI SCK output
M3SCKLB = 0x6 - Configure as the IOMSTR3 SPI clock loopback to the IOSLAVE device
M3SCLLB = 0x7 - Configure as the IOMSTR3 I2C clock loopback to the IOSLAVE device
18 PAD42STRNG RW Pad 42 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD42INPEN RW Pad 42 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD42PULL RW Pad 42 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15 PAD41PWRUP RW Pad 41 upper power switch enable

DIS = 0x0 - Power switch disabled
EN = 0x1 - Power switch enabled (VDD switch)
14 RSVD RO RESERVED

13:11 PAD41FNCSEL RW Pad 41 function select

M2nCE1 = 0x0 - Configure as the SPI channel 1 nCE signal from IOMSTR2
CLKOUT = 0x1 - Configure as the CLKOUT signal
SWO = 0x2 - Configure as the serial wire debug SWO signal
GPIO41 = 0x3 - Configure as GPIO41
M3nCE5 = 0x4 - Configure as the SPI channel 5 nCE signal from IOMSTR3
M5nCE7 = 0x5 - Configure as the SPI channel 7 nCE signal from IOMSTR5
M4nCE2 = 0x6 - Configure as the SPI channel 2 nCE signal from IOMSTR4
UA0RTS = 0x7 - Configure as the UART0 RTS output
10 PAD41STRNG RW Pad 41 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD41INPEN RW Pad 41 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD41PULL RW Pad 41 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 PAD40RSEL RW Pad 40 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
5:3 PAD40FNCSEL RW Pad 40 function select

UART0RX = 0x0 - Configure as the UART0 RX input signal
UART1RX = 0x1 - Configure as the UART1 RX input signal
TRIG0 = 0x2 - Configure as the ADC Trigger 0 signal
GPIO40 = 0x3 - Configure as GPIO40
M4SDA = 0x4 - Configure as the IOMSTR4 I2C serial data I/O signal
M4MISO = 0x5 - Configure as the IOMSTR4 SPI MISO input signal
SLMISOLB = 0x6 - Configure as the IOMSTR4 SPI MISO loopback signal from IOSLAVE
SLSDALB = 0x7 - Configure as the IOMSTR4 I2C SDA loopback signal from IOSLAVE
2 PAD40STRNG RW Pad 40 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD40INPEN RW Pad 40 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD40PULL RW Pad 40 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGL - Pad Configuration Register L

Address:

  Instance 0 Address:   0x4001002C

Description:

This register controls the pad configuration controls for PAD47 through PAD44. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD47FNCSEL
0x3
PAD47STRNG
0x0
PAD47INPEN
0x0
PAD47PULL
0x0
RSVD
0x0
PAD46FNCSEL
0x3
PAD46STRNG
0x0
PAD46INPEN
0x0
PAD46PULL
0x0
RSVD
0x0
PAD45FNCSEL
0x3
PAD45STRNG
0x0
PAD45INPEN
0x0
PAD45PULL
0x0
RSVD
0x0
PAD44FNCSEL
0x3
PAD44STRNG
0x0
PAD44INPEN
0x0
PAD44PULL
0x0

Bits Name RW Description
31:30 RSVD RO RESERVED

29:27 PAD47FNCSEL RW Pad 47 function select

M2nCE5 = 0x0 - Configure as the SPI channel 5 nCE signal from IOMSTR2
M0nCE5 = 0x1 - Configure as the SPI channel 5 nCE signal from IOMSTR0
TCTB2 = 0x2 - Configure as the input/output signal from CTIMER B2
GPIO47 = 0x3 - Configure as GPIO47
M5WIR3 = 0x4 - Configure as the IOMSTR5 SPI 3-wire MOSI/MISO signal
M5MOSI = 0x5 - Configure as the IOMSTR5 SPI MOSI output signal
M4nCE5 = 0x6 - Configure as the SPI channel 5 nCE signal from IOMSTR4
SLWIR3LB = 0x7 - Configure as the IOMSTR5 SPI 3-wire MOSI/MISO loopback signal from IOSLAVE
26 PAD47STRNG RW Pad 47 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
25 PAD47INPEN RW Pad 47 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
24 PAD47PULL RW Pad 47 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
23:22 RSVD RO RESERVED

21:19 PAD46FNCSEL RW Pad 46 function select

32khz_XT = 0x0 - Configure as the 32kHz output clock from the crystal
M0nCE4 = 0x1 - Configure as the SPI channel 4 nCE signal from IOMSTR0
TCTA2 = 0x2 - Configure as the input/output signal from CTIMER A2
GPIO46 = 0x3 - Configure as GPIO46
TCTA1 = 0x4 - Configure as the input/output signal from CTIMER A1
M5nCE4 = 0x5 - Configure as the SPI channel 4 nCE signal from IOMSTR5
M4nCE4 = 0x6 - Configure as the SPI channel 4 nCE signal from IOMSTR4
SWO = 0x7 - Configure as the serial wire debug SWO signal
18 PAD46STRNG RW Pad 46 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
17 PAD46INPEN RW Pad 46 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
16 PAD46PULL RW Pad 46 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
15:14 RSVD RO RESERVED

13:11 PAD45FNCSEL RW Pad 45 function select

UA1CTS = 0x0 - Configure as the UART1 CTS input signal
M0nCE3 = 0x1 - Configure as the SPI channel 3 nCE signal from IOMSTR0
TCTB1 = 0x2 - Configure as the input/output signal from CTIMER B1
GPIO45 = 0x3 - Configure as GPIO45
M4nCE3 = 0x4 - Configure as the SPI channel 3 nCE signal from IOMSTR4
M3nCE6 = 0x5 - Configure as the SPI channel 6 nCE signal from IOMSTR3
M5nCE5 = 0x6 - Configure as the SPI channel 5 nCE signal from IOMSTR5
TCTA1 = 0x7 - Configure as the input/output signal from CTIMER A1
10 PAD45STRNG RW Pad 45 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD45INPEN RW Pad 45 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD45PULL RW Pad 45 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 RSVD RO RESERVED

5:3 PAD44FNCSEL RW Pad 44 function select

UA1RTS = 0x0 - Configure as the UART1 RTS output signal
M0nCE2 = 0x1 - Configure as the SPI channel 2 nCE signal from IOMSTR0
TCTA1 = 0x2 - Configure as the input/output signal from CTIMER A1
GPIO44 = 0x3 - Configure as GPIO44
M4WIR3 = 0x4 - Configure as the IOMSTR4 SPI 3-wire MOSI/MISO signal
M4MOSI = 0x5 - Configure as the IOMSTR4 SPI MOSI signal
M5nCE6 = 0x6 - Configure as the SPI channel 6 nCE signal from IOMSTR5
SLWIR3LB = 0x7 - Configure as the IOMSTR4 SPI 3-wire MOSI/MISO loopback signal from IOSLAVE
2 PAD44STRNG RW Pad 44 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD44INPEN RW Pad 44 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD44PULL RW Pad 44 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

PADREGM - Pad Configuration Register M

Address:

  Instance 0 Address:   0x40010030

Description:

This register controls the pad configuration controls for PAD49 through PAD48. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD49RSEL
0x0
PAD49FNCSEL
0x3
PAD49STRNG
0x0
PAD49INPEN
0x0
PAD49PULL
0x0
PAD48RSEL
0x0
PAD48FNCSEL
0x3
PAD48STRNG
0x0
PAD48INPEN
0x0
PAD48PULL
0x0

Bits Name RW Description
31:16 RSVD RO RESERVED

15:14 PAD49RSEL RW Pad 49 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
13:11 PAD49FNCSEL RW Pad 49 function select

M2nCE7 = 0x0 - Configure as the SPI channel 7 nCE signal from IOMSTR2
M0nCE7 = 0x1 - Configure as the SPI channel 7 nCE signal from IOMSTR0
TCTB3 = 0x2 - Configure as the input/output signal from CTIMER B3
GPIO49 = 0x3 - Configure as GPIO49
M5SDA = 0x4 - Configure as the IOMSTR5 I2C serial data I/O signal
M5MISO = 0x5 - Configure as the IOMSTR5 SPI MISO input signal
SLMISOLB = 0x6 - Configure as the IOMSTR5 SPI MISO loopback signal from IOSLAVE
SLSDALB = 0x7 - Configure as the IOMSTR5 I2C SDA loopback signal from IOSLAVE
10 PAD49STRNG RW Pad 49 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
9 PAD49INPEN RW Pad 49 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
8 PAD49PULL RW Pad 49 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled
7:6 PAD48RSEL RW Pad 48 pullup resistor selection.

PULL1_5K = 0x0 - Pullup is ~1.5 KOhms
PULL6K = 0x1 - Pullup is ~6 KOhms
PULL12K = 0x2 - Pullup is ~12 KOhms
PULL24K = 0x3 - Pullup is ~24 KOhms
5:3 PAD48FNCSEL RW Pad 48 function select

M2nCE6 = 0x0 - Configure as the SPI channel 6 nCE signal from IOMSTR2
M0nCE6 = 0x1 - Configure as the SPI channel 6 nCE signal from IOMSTR0
TCTA3 = 0x2 - Configure as the input/output signal from CTIMER A3
GPIO48 = 0x3 - Configure as GPIO48
M5SCL = 0x4 - Configure as the IOMSTR5 I2C SCL clock I/O signal
M5SCK = 0x5 - Configure as the IOMSTR5 SPI SCK output
M5SCKLB = 0x6 - Configure as the IOMSTR5 SPI clock loopback to the IOSLAVE device
M5SCLLB = 0x7 - Configure as the IOMSTR5 I2C clock loopback to the IOSLAVE device
2 PAD48STRNG RW Pad 48 drive strength

LOW = 0x0 - Low drive strength
HIGH = 0x1 - High drive strength
1 PAD48INPEN RW Pad 48 input enable

DIS = 0x0 - Pad input disabled
EN = 0x1 - Pad input enabled
0 PAD48PULL RW Pad 48 pullup enable

DIS = 0x0 - Pullup disabled
EN = 0x1 - Pullup enabled

CFGA - GPIO Configuration Register A

Address:

  Instance 0 Address:   0x40010040

Description:

GPIO configuration controls for GPIO[7:0]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO7INTD
0x0
GPIO7OUTCFG
0x0
GPIO7INCFG
0x0
GPIO6INTD
0x0
GPIO6OUTCFG
0x0
GPIO6INCFG
0x0
GPIO5INTD
0x0
GPIO5OUTCFG
0x0
GPIO5INCFG
0x0
GPIO4INTD
0x0
GPIO4OUTCFG
0x0
GPIO4INCFG
0x0
GPIO3INTD
0x0
GPIO3OUTCFG
0x0
GPIO3INCFG
0x0
GPIO2INTD
0x0
GPIO2OUTCFG
0x0
GPIO2INCFG
0x0
GPIO1INTD
0x0
GPIO1OUTCFG
0x0
GPIO1INCFG
0x0
GPIO0INTD
0x0
GPIO0OUTCFG
0x0
GPIO0INCFG
0x0

Bits Name RW Description
31 GPIO7INTD RW GPIO7 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
30:29 GPIO7OUTCFG RW GPIO7 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
28 GPIO7INCFG RW GPIO7 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
27 GPIO6INTD RW GPIO6 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
26:25 GPIO6OUTCFG RW GPIO6 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
24 GPIO6INCFG RW GPIO6 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
23 GPIO5INTD RW GPIO5 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
22:21 GPIO5OUTCFG RW GPIO5 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
20 GPIO5INCFG RW GPIO5 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
19 GPIO4INTD RW GPIO4 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
18:17 GPIO4OUTCFG RW GPIO4 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
16 GPIO4INCFG RW GPIO4 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
15 GPIO3INTD RW GPIO3 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
14:13 GPIO3OUTCFG RW GPIO3 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
12 GPIO3INCFG RW GPIO3 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
11 GPIO2INTD RW GPIO2 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
10:9 GPIO2OUTCFG RW GPIO2 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
8 GPIO2INCFG RW GPIO2 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
7 GPIO1INTD RW GPIO1 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO1OUTCFG RW GPIO1 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO1INCFG RW GPIO1 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO0INTD RW GPIO0 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO0OUTCFG RW GPIO0 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO0INCFG RW GPIO0 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

CFGB - GPIO Configuration Register B

Address:

  Instance 0 Address:   0x40010044

Description:

GPIO configuration controls for GPIO[15:8]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO15INTD
0x0
GPIO15OUTCFG
0x0
GPIO15INCFG
0x0
GPIO14INTD
0x0
GPIO14OUTCFG
0x0
GPIO14INCFG
0x0
GPIO13INTD
0x0
GPIO13OUTCFG
0x0
GPIO13INCFG
0x0
GPIO12INTD
0x0
GPIO12OUTCFG
0x0
GPIO12INCFG
0x0
GPIO11INTD
0x0
GPIO11OUTCFG
0x0
GPIO11INCFG
0x0
GPIO10INTD
0x0
GPIO10OUTCFG
0x0
GPIO10INCFG
0x0
GPIO9INTD
0x0
GPIO9OUTCFG
0x0
GPIO9INCFG
0x0
GPIO8INTD
0x0
GPIO8OUTCFG
0x0
GPIO8INCFG
0x0

Bits Name RW Description
31 GPIO15INTD RW GPIO15 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
30:29 GPIO15OUTCFG RW GPIO15 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
28 GPIO15INCFG RW GPIO15 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
27 GPIO14INTD RW GPIO14 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
26:25 GPIO14OUTCFG RW GPIO14 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
24 GPIO14INCFG RW GPIO14 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
23 GPIO13INTD RW GPIO13 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
22:21 GPIO13OUTCFG RW GPIO13 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
20 GPIO13INCFG RW GPIO13 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
19 GPIO12INTD RW GPIO12 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
18:17 GPIO12OUTCFG RW GPIO12 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
16 GPIO12INCFG RW GPIO12 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
15 GPIO11INTD RW GPIO11 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
14:13 GPIO11OUTCFG RW GPIO11 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
12 GPIO11INCFG RW GPIO11 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
11 GPIO10INTD RW GPIO10 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
10:9 GPIO10OUTCFG RW GPIO10 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
8 GPIO10INCFG RW GPIO10 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
7 GPIO9INTD RW GPIO9 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO9OUTCFG RW GPIO9 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO9INCFG RW GPIO9 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO8INTD RW GPIO8 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO8OUTCFG RW GPIO8 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO8INCFG RW GPIO8 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

CFGC - GPIO Configuration Register C

Address:

  Instance 0 Address:   0x40010048

Description:

GPIO configuration controls for GPIO[23:16]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO23INTD
0x0
GPIO23OUTCFG
0x0
GPIO23INCFG
0x0
GPIO22INTD
0x0
GPIO22OUTCFG
0x0
GPIO22INCFG
0x0
GPIO21INTD
0x0
GPIO21OUTCFG
0x0
GPIO21INCFG
0x1
GPIO20INTD
0x0
GPIO20OUTCFG
0x0
GPIO20INCFG
0x1
GPIO19INTD
0x0
GPIO19OUTCFG
0x0
GPIO19INCFG
0x0
GPIO18INTD
0x0
GPIO18OUTCFG
0x0
GPIO18INCFG
0x0
GPIO17INTD
0x0
GPIO17OUTCFG
0x0
GPIO17INCFG
0x0
GPIO16INTD
0x0
GPIO16OUTCFG
0x0
GPIO16INCFG
0x0

Bits Name RW Description
31 GPIO23INTD RW GPIO23 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
30:29 GPIO23OUTCFG RW GPIO23 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
28 GPIO23INCFG RW GPIO23 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
27 GPIO22INTD RW GPIO22 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
26:25 GPIO22OUTCFG RW GPIO22 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
24 GPIO22INCFG RW GPIO22 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
23 GPIO21INTD RW GPIO21 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
22:21 GPIO21OUTCFG RW GPIO21 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
20 GPIO21INCFG RW GPIO21 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
19 GPIO20INTD RW GPIO20 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
18:17 GPIO20OUTCFG RW GPIO20 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
16 GPIO20INCFG RW GPIO20 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
15 GPIO19INTD RW GPIO19 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
14:13 GPIO19OUTCFG RW GPIO19 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
12 GPIO19INCFG RW GPIO19 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
11 GPIO18INTD RW GPIO18 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
10:9 GPIO18OUTCFG RW GPIO18 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
8 GPIO18INCFG RW GPIO18 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
7 GPIO17INTD RW GPIO17 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO17OUTCFG RW GPIO17 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO17INCFG RW GPIO17 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO16INTD RW GPIO16 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO16OUTCFG RW GPIO16 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO16INCFG RW GPIO16 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

CFGD - GPIO Configuration Register D

Address:

  Instance 0 Address:   0x4001004C

Description:

GPIO configuration controls for GPIO[31:24]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO31INTD
0x0
GPIO31OUTCFG
0x0
GPIO31INCFG
0x0
GPIO30INTD
0x0
GPIO30OUTCFG
0x0
GPIO30INCFG
0x0
GPIO29INTD
0x0
GPIO29OUTCFG
0x0
GPIO29INCFG
0x0
GPIO28INTD
0x0
GPIO28OUTCFG
0x0
GPIO28INCFG
0x0
GPIO27INTD
0x0
GPIO27OUTCFG
0x0
GPIO27INCFG
0x0
GPIO26INTD
0x0
GPIO26OUTCFG
0x0
GPIO26INCFG
0x0
GPIO25INTD
0x0
GPIO25OUTCFG
0x0
GPIO25INCFG
0x0
GPIO24INTD
0x0
GPIO24OUTCFG
0x0
GPIO24INCFG
0x0

Bits Name RW Description
31 GPIO31INTD RW GPIO31 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
30:29 GPIO31OUTCFG RW GPIO31 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
28 GPIO31INCFG RW GPIO31 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
27 GPIO30INTD RW GPIO30 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
26:25 GPIO30OUTCFG RW GPIO30 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
24 GPIO30INCFG RW GPIO30 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
23 GPIO29INTD RW GPIO29 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
22:21 GPIO29OUTCFG RW GPIO29 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
20 GPIO29INCFG RW GPIO29 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
19 GPIO28INTD RW GPIO28 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
18:17 GPIO28OUTCFG RW GPIO28 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
16 GPIO28INCFG RW GPIO28 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
15 GPIO27INTD RW GPIO27 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
14:13 GPIO27OUTCFG RW GPIO27 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
12 GPIO27INCFG RW GPIO27 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
11 GPIO26INTD RW GPIO26 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
10:9 GPIO26OUTCFG RW GPIO26 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
8 GPIO26INCFG RW GPIO26 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
7 GPIO25INTD RW GPIO25 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO25OUTCFG RW GPIO25 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO25INCFG RW GPIO25 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO24INTD RW GPIO24 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO24OUTCFG RW GPIO24 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO24INCFG RW GPIO24 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

CFGE - GPIO Configuration Register E

Address:

  Instance 0 Address:   0x40010050

Description:

GPIO configuration controls for GPIO[39:32]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO39INTD
0x0
GPIO39OUTCFG
0x0
GPIO39INCFG
0x0
GPIO38INTD
0x0
GPIO38OUTCFG
0x0
GPIO38INCFG
0x0
GPIO37INTD
0x0
GPIO37OUTCFG
0x0
GPIO37INCFG
0x0
GPIO36INTD
0x0
GPIO36OUTCFG
0x0
GPIO36INCFG
0x0
GPIO35INTD
0x0
GPIO35OUTCFG
0x0
GPIO35INCFG
0x0
GPIO34INTD
0x0
GPIO34OUTCFG
0x0
GPIO34INCFG
0x0
GPIO33INTD
0x0
GPIO33OUTCFG
0x0
GPIO33INCFG
0x0
GPIO32INTD
0x0
GPIO32OUTCFG
0x0
GPIO32INCFG
0x0

Bits Name RW Description
31 GPIO39INTD RW GPIO39 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
30:29 GPIO39OUTCFG RW GPIO39 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
28 GPIO39INCFG RW GPIO39 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
27 GPIO38INTD RW GPIO38 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
26:25 GPIO38OUTCFG RW GPIO38 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
24 GPIO38INCFG RW GPIO38 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
23 GPIO37INTD RW GPIO37 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
22:21 GPIO37OUTCFG RW GPIO37 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
20 GPIO37INCFG RW GPIO37 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
19 GPIO36INTD RW GPIO36 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
18:17 GPIO36OUTCFG RW GPIO36 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
16 GPIO36INCFG RW GPIO36 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
15 GPIO35INTD RW GPIO35 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
14:13 GPIO35OUTCFG RW GPIO35 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
12 GPIO35INCFG RW GPIO35 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
11 GPIO34INTD RW GPIO34 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
10:9 GPIO34OUTCFG RW GPIO34 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
8 GPIO34INCFG RW GPIO34 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
7 GPIO33INTD RW GPIO33 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO33OUTCFG RW GPIO33 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO33INCFG RW GPIO33 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO32INTD RW GPIO32 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO32OUTCFG RW GPIO32 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO32INCFG RW GPIO32 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

CFGF - GPIO Configuration Register F

Address:

  Instance 0 Address:   0x40010054

Description:

GPIO configuration controls for GPIO[47:40]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO47INTD
0x0
GPIO47OUTCFG
0x0
GPIO47INCFG
0x0
GPIO46INTD
0x0
GPIO46OUTCFG
0x0
GPIO46INCFG
0x0
GPIO45INTD
0x0
GPIO45OUTCFG
0x0
GPIO45INCFG
0x0
GPIO44INTD
0x0
GPIO44OUTCFG
0x0
GPIO44INCFG
0x0
GPIO43INTD
0x0
GPIO43OUTCFG
0x0
GPIO43INCFG
0x0
GPIO42INTD
0x0
GPIO42OUTCFG
0x0
GPIO42INCFG
0x0
GPIO41INTD
0x0
GPIO41OUTCFG
0x0
GPIO41INCFG
0x0
GPIO40INTD
0x0
GPIO40OUTCFG
0x0
GPIO40INCFG
0x0

Bits Name RW Description
31 GPIO47INTD RW GPIO47 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
30:29 GPIO47OUTCFG RW GPIO47 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
28 GPIO47INCFG RW GPIO47 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
27 GPIO46INTD RW GPIO46 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
26:25 GPIO46OUTCFG RW GPIO46 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
24 GPIO46INCFG RW GPIO46 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
23 GPIO45INTD RW GPIO45 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
22:21 GPIO45OUTCFG RW GPIO45 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
20 GPIO45INCFG RW GPIO45 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
19 GPIO44INTD RW GPIO44 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
18:17 GPIO44OUTCFG RW GPIO44 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
16 GPIO44INCFG RW GPIO44 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
15 GPIO43INTD RW GPIO43 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
14:13 GPIO43OUTCFG RW GPIO43 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
12 GPIO43INCFG RW GPIO43 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
11 GPIO42INTD RW GPIO42 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
10:9 GPIO42OUTCFG RW GPIO42 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
8 GPIO42INCFG RW GPIO42 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
7 GPIO41INTD RW GPIO41 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO41OUTCFG RW GPIO41 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO41INCFG RW GPIO41 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO40INTD RW GPIO40 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO40OUTCFG RW GPIO40 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO40INCFG RW GPIO40 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

CFGG - GPIO Configuration Register G

Address:

  Instance 0 Address:   0x40010058

Description:

GPIO configuration controls for GPIO[49:48]. Writes to this register must be unlocked by the PADKEY register.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
GPIO49INTD
0x0
GPIO49OUTCFG
0x0
GPIO49INCFG
0x0
GPIO48INTD
0x0
GPIO48OUTCFG
0x0
GPIO48INCFG
0x0

Bits Name RW Description
31:8 RSVD RO RESERVED

7 GPIO49INTD RW GPIO49 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
6:5 GPIO49OUTCFG RW GPIO49 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
4 GPIO49INCFG RW GPIO49 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero
3 GPIO48INTD RW GPIO48 interrupt direction.

INTLH = 0x0 - Interrupt on low to high GPIO transition
INTHL = 0x1 - Interrupt on high to low GPIO transition
2:1 GPIO48OUTCFG RW GPIO48 output configuration.

DIS = 0x0 - Output disabled
PUSHPULL = 0x1 - Output is push-pull
OD = 0x2 - Output is open drain
TS = 0x3 - Output is tri-state
0 GPIO48INCFG RW GPIO48 input enable.

READ = 0x0 - Read the GPIO pin data
RDZERO = 0x1 - Readback will always be zero

PADKEY - Key Register for all pad configuration registers

Address:

  Instance 0 Address:   0x40010060

Description:

Key Register for all pad configuration registers

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
PADKEY
0x0

Bits Name RW Description
31:0 PADKEY RW Key register value.

Key = 0x73 - Key

RDA - GPIO Input Register A

Address:

  Instance 0 Address:   0x40010080

Description:

GPIO Input Register A

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RDA
0x0

Bits Name RW Description
31:0 RDA RO GPIO31-0 read data.


RDB - GPIO Input Register B

Address:

  Instance 0 Address:   0x40010084

Description:

GPIO Input Register B

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
RDB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 RDB RO GPIO49-32 read data.


WTA - GPIO Output Register A

Address:

  Instance 0 Address:   0x40010088

Description:

GPIO Output Register A

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
WTA
0x0

Bits Name RW Description
31:0 WTA RW GPIO31-0 write data.


WTB - GPIO Output Register B

Address:

  Instance 0 Address:   0x4001008C

Description:

GPIO Output Register B

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
WTB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 WTB RW GPIO49-32 write data.


WTSA - GPIO Output Register A Set

Address:

  Instance 0 Address:   0x40010090

Description:

GPIO Output Register A Set

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
WTSA
0x0

Bits Name RW Description
31:0 WTSA WO Set the GPIO31-0 write data.


WTSB - GPIO Output Register B Set

Address:

  Instance 0 Address:   0x40010094

Description:

GPIO Output Register B Set

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
WTSB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 WTSB WO Set the GPIO49-32 write data.


WTCA - GPIO Output Register A Clear

Address:

  Instance 0 Address:   0x40010098

Description:

GPIO Output Register A Clear

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
WTCA
0x0

Bits Name RW Description
31:0 WTCA WO Clear the GPIO31-0 write data.


WTCB - GPIO Output Register B Clear

Address:

  Instance 0 Address:   0x4001009C

Description:

GPIO Output Register B Clear

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
WTCB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 WTCB WO Clear the GPIO49-32 write data.


ENA - GPIO Enable Register A

Address:

  Instance 0 Address:   0x400100A0

Description:

GPIO Enable Register A

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
ENA
0x0

Bits Name RW Description
31:0 ENA RW GPIO31-0 output enables


ENB - GPIO Enable Register B

Address:

  Instance 0 Address:   0x400100A4

Description:

GPIO Enable Register B

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
ENB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 ENB RW GPIO49-32 output enables


ENSA - GPIO Enable Register A Set

Address:

  Instance 0 Address:   0x400100A8

Description:

GPIO Enable Register A Set

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
ENSA
0x0

Bits Name RW Description
31:0 ENSA RW Set the GPIO31-0 output enables


ENSB - GPIO Enable Register B Set

Address:

  Instance 0 Address:   0x400100AC

Description:

GPIO Enable Register B Set

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
ENSB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 ENSB RW Set the GPIO49-32 output enables


ENCA - GPIO Enable Register A Clear

Address:

  Instance 0 Address:   0x400100B4

Description:

GPIO Enable Register A Clear

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
ENCA
0x0

Bits Name RW Description
31:0 ENCA RW Clear the GPIO31-0 output enables


ENCB - GPIO Enable Register B Clear

Address:

  Instance 0 Address:   0x400100B8

Description:

GPIO Enable Register B Clear

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
ENCB
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17:0 ENCB RW Clear the GPIO49-32 output enables


STMRCAP - STIMER Capture Control

Address:

  Instance 0 Address:   0x400100BC

Description:

STIMER Capture trigger select and enable.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
STPOL3
0x0
STSEL3
0x3f
RSVD
0x0
STPOL2
0x0
STSEL2
0x3f
RSVD
0x0
STPOL1
0x0
STSEL1
0x3f
RSVD
0x0
STPOL0
0x0
STSEL0
0x3f

Bits Name RW Description
31 RSVD RO RESERVED

30 STPOL3 RW STIMER Capture 3 Polarity.

CAPLH = 0x0 - Capture on low to high GPIO transition
CAPHL = 0x1 - Capture on high to low GPIO transition
29:24 STSEL3 RW STIMER Capture 3 Select.

23 RSVD RO RESERVED

22 STPOL2 RW STIMER Capture 2 Polarity.

CAPLH = 0x0 - Capture on low to high GPIO transition
CAPHL = 0x1 - Capture on high to low GPIO transition
21:16 STSEL2 RW STIMER Capture 2 Select.

15 RSVD RO RESERVED

14 STPOL1 RW STIMER Capture 1 Polarity.

CAPLH = 0x0 - Capture on low to high GPIO transition
CAPHL = 0x1 - Capture on high to low GPIO transition
13:8 STSEL1 RW STIMER Capture 1 Select.

7 RSVD RO RESERVED

6 STPOL0 RW STIMER Capture 0 Polarity.

CAPLH = 0x0 - Capture on low to high GPIO transition
CAPHL = 0x1 - Capture on high to low GPIO transition
5:0 STSEL0 RW STIMER Capture 0 Select.


IOM0IRQ - IOM0 Flow Control IRQ Select

Address:

  Instance 0 Address:   0x400100C0

Description:

IOMSTR0 IRQ select for flow control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
IOM0IRQ
0x3f

Bits Name RW Description
31:6 RSVD RO RESERVED

5:0 IOM0IRQ RW IOMSTR0 IRQ pad select.


IOM1IRQ - IOM1 Flow Control IRQ Select

Address:

  Instance 0 Address:   0x400100C4

Description:

IOMSTR1 IRQ select for flow control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
IOM1IRQ
0x3f

Bits Name RW Description
31:6 RSVD RO RESERVED

5:0 IOM1IRQ RW IOMSTR1 IRQ pad select.


IOM2IRQ - IOM2 Flow Control IRQ Select

Address:

  Instance 0 Address:   0x400100C8

Description:

IOMSTR2 IRQ select for flow control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
IOM2IRQ
0x3f

Bits Name RW Description
31:6 RSVD RO RESERVED

5:0 IOM2IRQ RW IOMSTR2 IRQ pad select.


IOM3IRQ - IOM3 Flow Control IRQ Select

Address:

  Instance 0 Address:   0x400100CC

Description:

IOMSTR3 IRQ select for flow control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
IOM3IRQ
0x3f

Bits Name RW Description
31:6 RSVD RO RESERVED

5:0 IOM3IRQ RW IOMSTR3 IRQ pad select.


IOM4IRQ - IOM4 Flow Control IRQ Select

Address:

  Instance 0 Address:   0x400100D0

Description:

IOMSTR4 IRQ select for flow control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
IOM4IRQ
0x3f

Bits Name RW Description
31:6 RSVD RO RESERVED

5:0 IOM4IRQ RW IOMSTR4 IRQ pad select.


IOM5IRQ - IOM5 Flow Control IRQ Select

Address:

  Instance 0 Address:   0x400100D4

Description:

IOMSTR5 IRQ select for flow control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
IOM5IRQ
0x3f

Bits Name RW Description
31:6 RSVD RO RESERVED

5:0 IOM5IRQ RW IOMSTR5 IRQ pad select.


LOOPBACK - IOM to IOS Loopback Control

Address:

  Instance 0 Address:   0x400100D8

Description:

IOM to IOS loopback control.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
LOOPBACK
0x0

Bits Name RW Description
31:3 RSVD RO RESERVED

2:0 LOOPBACK RW IOM to IOS loopback control.

LOOP0 = 0x0 - Loop IOM0 to IOS
LOOP1 = 0x1 - Loop IOM1 to IOS
LOOP2 = 0x2 - Loop IOM2 to IOS
LOOP3 = 0x3 - Loop IOM3 to IOS
LOOP4 = 0x4 - Loop IOM4 to IOS
LOOP5 = 0x5 - Loop IOM5 to IOS
LOOPNONE = 0x6 - No loopback connections

GPIOOBS - GPIO Observation Mode Sample register

Address:

  Instance 0 Address:   0x400100DC

Description:

GPIO Observation mode sample register

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
OBS_DATA
0x0

Bits Name RW Description
31:16 RSVD RO RESERVED

15:0 OBS_DATA RW Sample of the data output on the GPIO observation port. May have async sampling issues, as the data is not synronized to the read operation. Intended for debug purposes only


ALTPADCFGA - Alternate Pad Configuration reg0 (Pads 3,2,1,0)

Address:

  Instance 0 Address:   0x400100E0

Description:

This register has additional configuration control for pads 3, 2, 1, 0

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD3_SR
0x0
RSVD
0x0
PAD3_DS1
0x0
RSVD
0x0
PAD2_SR
0x0
RSVD
0x0
PAD2_DS1
0x0
RSVD
0x0
PAD1_SR
0x0
RSVD
0x0
PAD1_DS1
0x0
RSVD
0x0
PAD0_SR
0x0
RSVD
0x0
PAD0_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD3_SR RW Pad 3 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD3_DS1 RW Pad 3 high order drive strength selection. Used in conjunction with PAD3STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD2_SR RW Pad 2 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD2_DS1 RW Pad 2 high order drive strength selection. Used in conjunction with PAD2STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD1_SR RW Pad 1 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD1_DS1 RW Pad 1 high order drive strength selection. Used in conjunction with PAD1STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD0_SR RW Pad 0 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD0_DS1 RW Pad 0 high order drive strength selection. Used in conjunction with PAD0STRNG field to set the pad drive strength.


ALTPADCFGB - Alternate Pad Configuration reg1 (Pads 7,6,5,4)

Address:

  Instance 0 Address:   0x400100E4

Description:

This register has additional configuration control for pads 7, 6, 5, 4

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD7_SR
0x0
RSVD
0x0
PAD7_DS1
0x0
RSVD
0x0
PAD6_SR
0x0
RSVD
0x0
PAD6_DS1
0x0
RSVD
0x0
PAD5_SR
0x0
RSVD
0x0
PAD5_DS1
0x0
RSVD
0x0
PAD4_SR
0x0
RSVD
0x0
PAD4_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD7_SR RW Pad 7 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD7_DS1 RW Pad 7 high order drive strength selection. Used in conjunction with PAD7STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD6_SR RW Pad 6 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD6_DS1 RW Pad 6 high order drive strength selection. Used in conjunction with PAD6STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD5_SR RW Pad 5 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD5_DS1 RW Pad 5 high order drive strength selection. Used in conjunction with PAD5STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD4_SR RW Pad 4 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD4_DS1 RW Pad 4 high order drive strength selection. Used in conjunction with PAD4STRNG field to set the pad drive strength.


ALTPADCFGC - Alternate Pad Configuration reg2 (Pads 11,10,9,8)

Address:

  Instance 0 Address:   0x400100E8

Description:

This register has additional configuration control for pads 11, 10, 9, 8

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD11_SR
0x0
RSVD
0x0
PAD11_DS1
0x0
RSVD
0x0
PAD10_SR
0x0
RSVD
0x0
PAD10_DS1
0x0
RSVD
0x0
PAD9_SR
0x0
RSVD
0x0
PAD9_DS1
0x0
RSVD
0x0
PAD8_SR
0x0
RSVD
0x0
PAD8_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD11_SR RW Pad 11 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD11_DS1 RW Pad 11 high order drive strength selection. Used in conjunction with PAD11STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD10_SR RW Pad 10 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD10_DS1 RW Pad 10 high order drive strength selection. Used in conjunction with PAD10STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD9_SR RW Pad 9 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD9_DS1 RW Pad 9 high order drive strength selection. Used in conjunction with PAD9STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD8_SR RW Pad 8 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD8_DS1 RW Pad 8 high order drive strength selection. Used in conjunction with PAD8STRNG field to set the pad drive strength.


ALTPADCFGD - Alternate Pad Configuration reg3 (Pads 15,14,13,12)

Address:

  Instance 0 Address:   0x400100EC

Description:

This register has additional configuration control for pads 15, 14, 13, 12

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD15_SR
0x0
RSVD
0x0
PAD15_DS1
0x0
RSVD
0x0
PAD14_SR
0x0
RSVD
0x0
PAD14_DS1
0x0
RSVD
0x0
PAD13_SR
0x0
RSVD
0x0
PAD13_DS1
0x0
RSVD
0x0
PAD12_SR
0x0
RSVD
0x0
PAD12_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD15_SR RW Pad 15 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD15_DS1 RW Pad 15 high order drive strength selection. Used in conjunction with PAD15STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD14_SR RW Pad 14 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD14_DS1 RW Pad 14 high order drive strength selection. Used in conjunction with PAD14STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD13_SR RW Pad 13 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD13_DS1 RW Pad 13 high order drive strength selection. Used in conjunction with PAD13STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD12_SR RW Pad 12 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD12_DS1 RW Pad 12 high order drive strength selection. Used in conjunction with PAD12STRNG field to set the pad drive strength.


ALTPADCFGE - Alternate Pad Configuration reg4 (Pads 19,18,17,16)

Address:

  Instance 0 Address:   0x400100F0

Description:

This register has additional configuration control for pads 19, 18, 17, 16

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD19_SR
0x0
RSVD
0x0
PAD19_DS1
0x0
RSVD
0x0
PAD18_SR
0x0
RSVD
0x0
PAD18_DS1
0x0
RSVD
0x0
PAD17_SR
0x0
RSVD
0x0
PAD17_DS1
0x0
RSVD
0x0
PAD16_SR
0x0
RSVD
0x0
PAD16_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD19_SR RW Pad 19 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD19_DS1 RW Pad 19 high order drive strength selection. Used in conjunction with PAD19STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD18_SR RW Pad 18 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD18_DS1 RW Pad 18 high order drive strength selection. Used in conjunction with PAD18STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD17_SR RW Pad 17 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD17_DS1 RW Pad 17 high order drive strength selection. Used in conjunction with PAD17STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD16_SR RW Pad 16 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD16_DS1 RW Pad 16 high order drive strength selection. Used in conjunction with PAD16STRNG field to set the pad drive strength.


ALTPADCFGF - Alternate Pad Configuration reg5 (Pads 23,22,21,20)

Address:

  Instance 0 Address:   0x400100F4

Description:

This register has additional configuration control for pads 23, 22, 21, 20

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD23_SR
0x0
RSVD
0x0
PAD23_DS1
0x0
RSVD
0x0
PAD22_SR
0x0
RSVD
0x0
PAD22_DS1
0x0
RSVD
0x0
PAD21_SR
0x0
RSVD
0x0
PAD21_DS1
0x0
RSVD
0x0
PAD20_SR
0x0
RSVD
0x0
PAD20_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD23_SR RW Pad 23 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD23_DS1 RW Pad 23 high order drive strength selection. Used in conjunction with PAD23STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD22_SR RW Pad 22 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD22_DS1 RW Pad 22 high order drive strength selection. Used in conjunction with PAD22STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD21_SR RW Pad 21 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD21_DS1 RW Pad 21 high order drive strength selection. Used in conjunction with PAD21STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD20_SR RW Pad 20 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD20_DS1 RW Pad 20 high order drive strength selection. Used in conjunction with PAD20STRNG field to set the pad drive strength.


ALTPADCFGG - Alternate Pad Configuration reg6 (Pads 27,26,25,24)

Address:

  Instance 0 Address:   0x400100F8

Description:

This register has additional configuration control for pads 27, 26, 25, 24

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD27_SR
0x0
RSVD
0x0
PAD27_DS1
0x0
RSVD
0x0
PAD26_SR
0x0
RSVD
0x0
PAD26_DS1
0x0
RSVD
0x0
PAD25_SR
0x0
RSVD
0x0
PAD25_DS1
0x0
RSVD
0x0
PAD24_SR
0x0
RSVD
0x0
PAD24_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD27_SR RW Pad 27 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD27_DS1 RW Pad 27 high order drive strength selection. Used in conjunction with PAD27STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD26_SR RW Pad 26 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD26_DS1 RW Pad 26 high order drive strength selection. Used in conjunction with PAD26STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD25_SR RW Pad 25 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD25_DS1 RW Pad 25 high order drive strength selection. Used in conjunction with PAD25STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD24_SR RW Pad 24 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD24_DS1 RW Pad 24 high order drive strength selection. Used in conjunction with PAD24STRNG field to set the pad drive strength.


ALTPADCFGH - Alternate Pad Configuration reg7 (Pads 31,30,29,28)

Address:

  Instance 0 Address:   0x400100FC

Description:

This register has additional configuration control for pads 31, 30, 29, 28

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD31_SR
0x0
RSVD
0x0
PAD31_DS1
0x0
RSVD
0x0
PAD30_SR
0x0
RSVD
0x0
PAD30_DS1
0x0
RSVD
0x0
PAD29_SR
0x0
RSVD
0x0
PAD29_DS1
0x0
RSVD
0x0
PAD28_SR
0x0
RSVD
0x0
PAD28_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD31_SR RW Pad 31 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD31_DS1 RW Pad 31 high order drive strength selection. Used in conjunction with PAD31STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD30_SR RW Pad 30 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD30_DS1 RW Pad 30 high order drive strength selection. Used in conjunction with PAD30STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD29_SR RW Pad 29 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD29_DS1 RW Pad 29 high order drive strength selection. Used in conjunction with PAD29STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD28_SR RW Pad 28 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD28_DS1 RW Pad 28 high order drive strength selection. Used in conjunction with PAD28STRNG field to set the pad drive strength.


ALTPADCFGI - Alternate Pad Configuration reg8 (Pads 35,34,33,32)

Address:

  Instance 0 Address:   0x40010100

Description:

This register has additional configuration control for pads 35, 34, 33, 32

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD35_SR
0x0
RSVD
0x0
PAD35_DS1
0x0
RSVD
0x0
PAD34_SR
0x0
RSVD
0x0
PAD34_DS1
0x0
RSVD
0x0
PAD33_SR
0x0
RSVD
0x0
PAD33_DS1
0x0
RSVD
0x0
PAD32_SR
0x0
RSVD
0x0
PAD32_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD35_SR RW Pad 35 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD35_DS1 RW Pad 35 high order drive strength selection. Used in conjunction with PAD35STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD34_SR RW Pad 34 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD34_DS1 RW Pad 34 high order drive strength selection. Used in conjunction with PAD34STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD33_SR RW Pad 33 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD33_DS1 RW Pad 33 high order drive strength selection. Used in conjunction with PAD33STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD32_SR RW Pad 32 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD32_DS1 RW Pad 32 high order drive strength selection. Used in conjunction with PAD32STRNG field to set the pad drive strength.


ALTPADCFGJ - Alternate Pad Configuration reg9 (Pads 39,38,37,36)

Address:

  Instance 0 Address:   0x40010104

Description:

This register has additional configuration control for pads 39, 38, 37, 36

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD39_SR
0x0
RSVD
0x0
PAD39_DS1
0x0
RSVD
0x0
PAD38_SR
0x0
RSVD
0x0
PAD38_DS1
0x0
RSVD
0x0
PAD37_SR
0x0
RSVD
0x0
PAD37_DS1
0x0
RSVD
0x0
PAD36_SR
0x0
RSVD
0x0
PAD36_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD39_SR RW Pad 39 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD39_DS1 RW Pad 39 high order drive strength selection. Used in conjunction with PAD39STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD38_SR RW Pad 38 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD38_DS1 RW Pad 38 high order drive strength selection. Used in conjunction with PAD38STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD37_SR RW Pad 37 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD37_DS1 RW Pad 37 high order drive strength selection. Used in conjunction with PAD37STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD36_SR RW Pad 36 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD36_DS1 RW Pad 36 high order drive strength selection. Used in conjunction with PAD36STRNG field to set the pad drive strength.


ALTPADCFGK - Alternate Pad Configuration reg10 (Pads 43,42,41,40)

Address:

  Instance 0 Address:   0x40010108

Description:

This register has additional configuration control for pads 43, 42, 41, 40

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD43_SR
0x0
RSVD
0x0
PAD43_DS1
0x0
RSVD
0x0
PAD42_SR
0x0
RSVD
0x0
PAD42_DS1
0x0
RSVD
0x0
PAD41_SR
0x0
RSVD
0x0
PAD41_DS1
0x0
RSVD
0x0
PAD40_SR
0x0
RSVD
0x0
PAD40_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD43_SR RW Pad 43 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD43_DS1 RW Pad 43 high order drive strength selection. Used in conjunction with PAD43STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD42_SR RW Pad 42 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD42_DS1 RW Pad 42 high order drive strength selection. Used in conjunction with PAD42STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD41_SR RW Pad 41 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD41_DS1 RW Pad 41 high order drive strength selection. Used in conjunction with PAD41STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD40_SR RW Pad 40 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD40_DS1 RW Pad 40 high order drive strength selection. Used in conjunction with PAD40STRNG field to set the pad drive strength.


ALTPADCFGL - Alternate Pad Configuration reg11 (Pads 47,46,45,44)

Address:

  Instance 0 Address:   0x4001010C

Description:

This register has additional configuration control for pads 47, 46, 45, 44

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD47_SR
0x0
RSVD
0x0
PAD47_DS1
0x0
RSVD
0x0
PAD46_SR
0x0
RSVD
0x0
PAD46_DS1
0x0
RSVD
0x0
PAD45_SR
0x0
RSVD
0x0
PAD45_DS1
0x0
RSVD
0x0
PAD44_SR
0x0
RSVD
0x0
PAD44_DS1
0x0

Bits Name RW Description
31:29 RSVD RO RESERVED

28 PAD47_SR RW Pad 47 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
27:25 RSVD RO RESERVED

24 PAD47_DS1 RW Pad 47 high order drive strength selection. Used in conjunction with PAD47STRNG field to set the pad drive strength.

23:21 RSVD RO RESERVED

20 PAD46_SR RW Pad 46 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
19:17 RSVD RO RESERVED

16 PAD46_DS1 RW Pad 46 high order drive strength selection. Used in conjunction with PAD46STRNG field to set the pad drive strength.

15:13 RSVD RO RESERVED

12 PAD45_SR RW Pad 45 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD45_DS1 RW Pad 45 high order drive strength selection. Used in conjunction with PAD45STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD44_SR RW Pad 44 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD44_DS1 RW Pad 44 high order drive strength selection. Used in conjunction with PAD44STRNG field to set the pad drive strength.


ALTPADCFGM - Alternate Pad Configuration reg12 (Pads 49,48)

Address:

  Instance 0 Address:   0x40010110

Description:

This register has additional configuration control for pads 49, 48

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
PAD49_SR
0x0
RSVD
0x0
PAD49_DS1
0x0
RSVD
0x0
PAD48_SR
0x0
RSVD
0x0
PAD48_DS1
0x0

Bits Name RW Description
31:13 RSVD RO RESERVED

12 PAD49_SR RW Pad 49 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
11:9 RSVD RO RESERVED

8 PAD49_DS1 RW Pad 49 high order drive strength selection. Used in conjunction with PAD49STRNG field to set the pad drive strength.

7:5 RSVD RO RESERVED

4 PAD48_SR RW Pad 48 slew rate selection.

SR_EN = 0x1 - Enables Slew rate control on pad
3:1 RSVD RO RESERVED

0 PAD48_DS1 RW Pad 48 high order drive strength selection. Used in conjunction with PAD48STRNG field to set the pad drive strength.


INT0EN - GPIO Interrupt Registers 31-0: Enable

Address:

  Instance 0 Address:   0x40010200

Description:

Set bits in this register to allow this module to generate the corresponding interrupt.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO31
0x0
GPIO30
0x0
GPIO29
0x0
GPIO28
0x0
GPIO27
0x0
GPIO26
0x0
GPIO25
0x0
GPIO24
0x0
GPIO23
0x0
GPIO22
0x0
GPIO21
0x0
GPIO20
0x0
GPIO19
0x0
GPIO18
0x0
GPIO17
0x0
GPIO16
0x0
GPIO15
0x0
GPIO14
0x0
GPIO13
0x0
GPIO12
0x0
GPIO11
0x0
GPIO10
0x0
GPIO9
0x0
GPIO8
0x0
GPIO7
0x0
GPIO6
0x0
GPIO5
0x0
GPIO4
0x0
GPIO3
0x0
GPIO2
0x0
GPIO1
0x0
GPIO0
0x0

Bits Name RW Description
31 GPIO31 RW GPIO31 interrupt.

30 GPIO30 RW GPIO30 interrupt.

29 GPIO29 RW GPIO29 interrupt.

28 GPIO28 RW GPIO28 interrupt.

27 GPIO27 RW GPIO27 interrupt.

26 GPIO26 RW GPIO26 interrupt.

25 GPIO25 RW GPIO25 interrupt.

24 GPIO24 RW GPIO24 interrupt.

23 GPIO23 RW GPIO23 interrupt.

22 GPIO22 RW GPIO22 interrupt.

21 GPIO21 RW GPIO21 interrupt.

20 GPIO20 RW GPIO20 interrupt.

19 GPIO19 RW GPIO19 interrupt.

18 GPIO18 RW GPIO18interrupt.

17 GPIO17 RW GPIO17 interrupt.

16 GPIO16 RW GPIO16 interrupt.

15 GPIO15 RW GPIO15 interrupt.

14 GPIO14 RW GPIO14 interrupt.

13 GPIO13 RW GPIO13 interrupt.

12 GPIO12 RW GPIO12 interrupt.

11 GPIO11 RW GPIO11 interrupt.

10 GPIO10 RW GPIO10 interrupt.

9 GPIO9 RW GPIO9 interrupt.

8 GPIO8 RW GPIO8 interrupt.

7 GPIO7 RW GPIO7 interrupt.

6 GPIO6 RW GPIO6 interrupt.

5 GPIO5 RW GPIO5 interrupt.

4 GPIO4 RW GPIO4 interrupt.

3 GPIO3 RW GPIO3 interrupt.

2 GPIO2 RW GPIO2 interrupt.

1 GPIO1 RW GPIO1 interrupt.

0 GPIO0 RW GPIO0 interrupt.


INT0STAT - GPIO Interrupt Registers 31-0: Status

Address:

  Instance 0 Address:   0x40010204

Description:

Read bits from this register to discover the cause of a recent interrupt.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO31
0x0
GPIO30
0x0
GPIO29
0x0
GPIO28
0x0
GPIO27
0x0
GPIO26
0x0
GPIO25
0x0
GPIO24
0x0
GPIO23
0x0
GPIO22
0x0
GPIO21
0x0
GPIO20
0x0
GPIO19
0x0
GPIO18
0x0
GPIO17
0x0
GPIO16
0x0
GPIO15
0x0
GPIO14
0x0
GPIO13
0x0
GPIO12
0x0
GPIO11
0x0
GPIO10
0x0
GPIO9
0x0
GPIO8
0x0
GPIO7
0x0
GPIO6
0x0
GPIO5
0x0
GPIO4
0x0
GPIO3
0x0
GPIO2
0x0
GPIO1
0x0
GPIO0
0x0

Bits Name RW Description
31 GPIO31 RW GPIO31 interrupt.

30 GPIO30 RW GPIO30 interrupt.

29 GPIO29 RW GPIO29 interrupt.

28 GPIO28 RW GPIO28 interrupt.

27 GPIO27 RW GPIO27 interrupt.

26 GPIO26 RW GPIO26 interrupt.

25 GPIO25 RW GPIO25 interrupt.

24 GPIO24 RW GPIO24 interrupt.

23 GPIO23 RW GPIO23 interrupt.

22 GPIO22 RW GPIO22 interrupt.

21 GPIO21 RW GPIO21 interrupt.

20 GPIO20 RW GPIO20 interrupt.

19 GPIO19 RW GPIO19 interrupt.

18 GPIO18 RW GPIO18interrupt.

17 GPIO17 RW GPIO17 interrupt.

16 GPIO16 RW GPIO16 interrupt.

15 GPIO15 RW GPIO15 interrupt.

14 GPIO14 RW GPIO14 interrupt.

13 GPIO13 RW GPIO13 interrupt.

12 GPIO12 RW GPIO12 interrupt.

11 GPIO11 RW GPIO11 interrupt.

10 GPIO10 RW GPIO10 interrupt.

9 GPIO9 RW GPIO9 interrupt.

8 GPIO8 RW GPIO8 interrupt.

7 GPIO7 RW GPIO7 interrupt.

6 GPIO6 RW GPIO6 interrupt.

5 GPIO5 RW GPIO5 interrupt.

4 GPIO4 RW GPIO4 interrupt.

3 GPIO3 RW GPIO3 interrupt.

2 GPIO2 RW GPIO2 interrupt.

1 GPIO1 RW GPIO1 interrupt.

0 GPIO0 RW GPIO0 interrupt.


INT0CLR - GPIO Interrupt Registers 31-0: Clear

Address:

  Instance 0 Address:   0x40010208

Description:

Write a 1 to a bit in this register to clear the interrupt status associated with that bit.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO31
0x0
GPIO30
0x0
GPIO29
0x0
GPIO28
0x0
GPIO27
0x0
GPIO26
0x0
GPIO25
0x0
GPIO24
0x0
GPIO23
0x0
GPIO22
0x0
GPIO21
0x0
GPIO20
0x0
GPIO19
0x0
GPIO18
0x0
GPIO17
0x0
GPIO16
0x0
GPIO15
0x0
GPIO14
0x0
GPIO13
0x0
GPIO12
0x0
GPIO11
0x0
GPIO10
0x0
GPIO9
0x0
GPIO8
0x0
GPIO7
0x0
GPIO6
0x0
GPIO5
0x0
GPIO4
0x0
GPIO3
0x0
GPIO2
0x0
GPIO1
0x0
GPIO0
0x0

Bits Name RW Description
31 GPIO31 RW GPIO31 interrupt.

30 GPIO30 RW GPIO30 interrupt.

29 GPIO29 RW GPIO29 interrupt.

28 GPIO28 RW GPIO28 interrupt.

27 GPIO27 RW GPIO27 interrupt.

26 GPIO26 RW GPIO26 interrupt.

25 GPIO25 RW GPIO25 interrupt.

24 GPIO24 RW GPIO24 interrupt.

23 GPIO23 RW GPIO23 interrupt.

22 GPIO22 RW GPIO22 interrupt.

21 GPIO21 RW GPIO21 interrupt.

20 GPIO20 RW GPIO20 interrupt.

19 GPIO19 RW GPIO19 interrupt.

18 GPIO18 RW GPIO18interrupt.

17 GPIO17 RW GPIO17 interrupt.

16 GPIO16 RW GPIO16 interrupt.

15 GPIO15 RW GPIO15 interrupt.

14 GPIO14 RW GPIO14 interrupt.

13 GPIO13 RW GPIO13 interrupt.

12 GPIO12 RW GPIO12 interrupt.

11 GPIO11 RW GPIO11 interrupt.

10 GPIO10 RW GPIO10 interrupt.

9 GPIO9 RW GPIO9 interrupt.

8 GPIO8 RW GPIO8 interrupt.

7 GPIO7 RW GPIO7 interrupt.

6 GPIO6 RW GPIO6 interrupt.

5 GPIO5 RW GPIO5 interrupt.

4 GPIO4 RW GPIO4 interrupt.

3 GPIO3 RW GPIO3 interrupt.

2 GPIO2 RW GPIO2 interrupt.

1 GPIO1 RW GPIO1 interrupt.

0 GPIO0 RW GPIO0 interrupt.


INT0SET - GPIO Interrupt Registers 31-0: Set

Address:

  Instance 0 Address:   0x4001020C

Description:

Write a 1 to a bit in this register to instantly generate an interrupt from this module. (Generally used for testing purposes).

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
GPIO31
0x0
GPIO30
0x0
GPIO29
0x0
GPIO28
0x0
GPIO27
0x0
GPIO26
0x0
GPIO25
0x0
GPIO24
0x0
GPIO23
0x0
GPIO22
0x0
GPIO21
0x0
GPIO20
0x0
GPIO19
0x0
GPIO18
0x0
GPIO17
0x0
GPIO16
0x0
GPIO15
0x0
GPIO14
0x0
GPIO13
0x0
GPIO12
0x0
GPIO11
0x0
GPIO10
0x0
GPIO9
0x0
GPIO8
0x0
GPIO7
0x0
GPIO6
0x0
GPIO5
0x0
GPIO4
0x0
GPIO3
0x0
GPIO2
0x0
GPIO1
0x0
GPIO0
0x0

Bits Name RW Description
31 GPIO31 RW GPIO31 interrupt.

30 GPIO30 RW GPIO30 interrupt.

29 GPIO29 RW GPIO29 interrupt.

28 GPIO28 RW GPIO28 interrupt.

27 GPIO27 RW GPIO27 interrupt.

26 GPIO26 RW GPIO26 interrupt.

25 GPIO25 RW GPIO25 interrupt.

24 GPIO24 RW GPIO24 interrupt.

23 GPIO23 RW GPIO23 interrupt.

22 GPIO22 RW GPIO22 interrupt.

21 GPIO21 RW GPIO21 interrupt.

20 GPIO20 RW GPIO20 interrupt.

19 GPIO19 RW GPIO19 interrupt.

18 GPIO18 RW GPIO18interrupt.

17 GPIO17 RW GPIO17 interrupt.

16 GPIO16 RW GPIO16 interrupt.

15 GPIO15 RW GPIO15 interrupt.

14 GPIO14 RW GPIO14 interrupt.

13 GPIO13 RW GPIO13 interrupt.

12 GPIO12 RW GPIO12 interrupt.

11 GPIO11 RW GPIO11 interrupt.

10 GPIO10 RW GPIO10 interrupt.

9 GPIO9 RW GPIO9 interrupt.

8 GPIO8 RW GPIO8 interrupt.

7 GPIO7 RW GPIO7 interrupt.

6 GPIO6 RW GPIO6 interrupt.

5 GPIO5 RW GPIO5 interrupt.

4 GPIO4 RW GPIO4 interrupt.

3 GPIO3 RW GPIO3 interrupt.

2 GPIO2 RW GPIO2 interrupt.

1 GPIO1 RW GPIO1 interrupt.

0 GPIO0 RW GPIO0 interrupt.


INT1EN - GPIO Interrupt Registers 49-32: Enable

Address:

  Instance 0 Address:   0x40010210

Description:

Set bits in this register to allow this module to generate the corresponding interrupt.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
GPIO49
0x0
GPIO48
0x0
GPIO47
0x0
GPIO46
0x0
GPIO45
0x0
GPIO44
0x0
GPIO43
0x0
GPIO42
0x0
GPIO41
0x0
GPIO40
0x0
GPIO39
0x0
GPIO38
0x0
GPIO37
0x0
GPIO36
0x0
GPIO35
0x0
GPIO34
0x0
GPIO33
0x0
GPIO32
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17 GPIO49 RW GPIO49 interrupt.

16 GPIO48 RW GPIO48 interrupt.

15 GPIO47 RW GPIO47 interrupt.

14 GPIO46 RW GPIO46 interrupt.

13 GPIO45 RW GPIO45 interrupt.

12 GPIO44 RW GPIO44 interrupt.

11 GPIO43 RW GPIO43 interrupt.

10 GPIO42 RW GPIO42 interrupt.

9 GPIO41 RW GPIO41 interrupt.

8 GPIO40 RW GPIO40 interrupt.

7 GPIO39 RW GPIO39 interrupt.

6 GPIO38 RW GPIO38 interrupt.

5 GPIO37 RW GPIO37 interrupt.

4 GPIO36 RW GPIO36 interrupt.

3 GPIO35 RW GPIO35 interrupt.

2 GPIO34 RW GPIO34 interrupt.

1 GPIO33 RW GPIO33 interrupt.

0 GPIO32 RW GPIO32 interrupt.


INT1STAT - GPIO Interrupt Registers 49-32: Status

Address:

  Instance 0 Address:   0x40010214

Description:

Read bits from this register to discover the cause of a recent interrupt.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
GPIO49
0x0
GPIO48
0x0
GPIO47
0x0
GPIO46
0x0
GPIO45
0x0
GPIO44
0x0
GPIO43
0x0
GPIO42
0x0
GPIO41
0x0
GPIO40
0x0
GPIO39
0x0
GPIO38
0x0
GPIO37
0x0
GPIO36
0x0
GPIO35
0x0
GPIO34
0x0
GPIO33
0x0
GPIO32
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17 GPIO49 RW GPIO49 interrupt.

16 GPIO48 RW GPIO48 interrupt.

15 GPIO47 RW GPIO47 interrupt.

14 GPIO46 RW GPIO46 interrupt.

13 GPIO45 RW GPIO45 interrupt.

12 GPIO44 RW GPIO44 interrupt.

11 GPIO43 RW GPIO43 interrupt.

10 GPIO42 RW GPIO42 interrupt.

9 GPIO41 RW GPIO41 interrupt.

8 GPIO40 RW GPIO40 interrupt.

7 GPIO39 RW GPIO39 interrupt.

6 GPIO38 RW GPIO38 interrupt.

5 GPIO37 RW GPIO37 interrupt.

4 GPIO36 RW GPIO36 interrupt.

3 GPIO35 RW GPIO35 interrupt.

2 GPIO34 RW GPIO34 interrupt.

1 GPIO33 RW GPIO33 interrupt.

0 GPIO32 RW GPIO32 interrupt.


INT1CLR - GPIO Interrupt Registers 49-32: Clear

Address:

  Instance 0 Address:   0x40010218

Description:

Write a 1 to a bit in this register to clear the interrupt status associated with that bit.

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
GPIO49
0x0
GPIO48
0x0
GPIO47
0x0
GPIO46
0x0
GPIO45
0x0
GPIO44
0x0
GPIO43
0x0
GPIO42
0x0
GPIO41
0x0
GPIO40
0x0
GPIO39
0x0
GPIO38
0x0
GPIO37
0x0
GPIO36
0x0
GPIO35
0x0
GPIO34
0x0
GPIO33
0x0
GPIO32
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17 GPIO49 RW GPIO49 interrupt.

16 GPIO48 RW GPIO48 interrupt.

15 GPIO47 RW GPIO47 interrupt.

14 GPIO46 RW GPIO46 interrupt.

13 GPIO45 RW GPIO45 interrupt.

12 GPIO44 RW GPIO44 interrupt.

11 GPIO43 RW GPIO43 interrupt.

10 GPIO42 RW GPIO42 interrupt.

9 GPIO41 RW GPIO41 interrupt.

8 GPIO40 RW GPIO40 interrupt.

7 GPIO39 RW GPIO39 interrupt.

6 GPIO38 RW GPIO38 interrupt.

5 GPIO37 RW GPIO37 interrupt.

4 GPIO36 RW GPIO36 interrupt.

3 GPIO35 RW GPIO35 interrupt.

2 GPIO34 RW GPIO34 interrupt.

1 GPIO33 RW GPIO33 interrupt.

0 GPIO32 RW GPIO32 interrupt.


INT1SET - GPIO Interrupt Registers 49-32: Set

Address:

  Instance 0 Address:   0x4001021C

Description:

Write a 1 to a bit in this register to instantly generate an interrupt from this module. (Generally used for testing purposes).

Example Macro Usage:

//
// All macro-based register writes follow the same basic format. For
// single-instance modules, you may use the simpler AM_REG macro. For
// multi-instance macros, you will need to specify the instance number using
// the AM_REGn macro format.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
// AM_REGn(<MODULE>, <INSTANCE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>_<VALUE>;
//
// For registers that do not have specific enumeration values, you may use this alternate format instead.
//
// AM_REG(<MODULE>, <REGISTER>) |= AM_REG_<MODULE>_<REGISTER>_<FIELD>(<NUMBER>);
//
// For example, the following three lines of code are equivalent methods of
// writing the value for 12MHZ to the CLKSEL field in the ADC_CFG register.
//
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REGn(ADC, 0, CFG) |= AM_REG_ADC_CFG_CLKSEL_12MHZ;
AM_REG(ADC, CFG) |= AM_REG_ADC_CFG_CLKSEL(0x1);

Register Fields:

31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
RSVD
0x0
GPIO49
0x0
GPIO48
0x0
GPIO47
0x0
GPIO46
0x0
GPIO45
0x0
GPIO44
0x0
GPIO43
0x0
GPIO42
0x0
GPIO41
0x0
GPIO40
0x0
GPIO39
0x0
GPIO38
0x0
GPIO37
0x0
GPIO36
0x0
GPIO35
0x0
GPIO34
0x0
GPIO33
0x0
GPIO32
0x0

Bits Name RW Description
31:18 RSVD RO RESERVED

17 GPIO49 RW GPIO49 interrupt.

16 GPIO48 RW GPIO48 interrupt.

15 GPIO47 RW GPIO47 interrupt.

14 GPIO46 RW GPIO46 interrupt.

13 GPIO45 RW GPIO45 interrupt.

12 GPIO44 RW GPIO44 interrupt.

11 GPIO43 RW GPIO43 interrupt.

10 GPIO42 RW GPIO42 interrupt.

9 GPIO41 RW GPIO41 interrupt.

8 GPIO40 RW GPIO40 interrupt.

7 GPIO39 RW GPIO39 interrupt.

6 GPIO38 RW GPIO38 interrupt.

5 GPIO37 RW GPIO37 interrupt.

4 GPIO36 RW GPIO36 interrupt.

3 GPIO35 RW GPIO35 interrupt.

2 GPIO34 RW GPIO34 interrupt.

1 GPIO33 RW GPIO33 interrupt.

0 GPIO32 RW GPIO32 interrupt.