123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512 |
- //*****************************************************************************
- //
- // gpio.c - API for GPIO ports
- //
- // Copyright (c) 2005-2009 Luminary Micro, Inc. All rights reserved.
- // Software License Agreement
- //
- // Luminary Micro, Inc. (LMI) is supplying this software for use solely and
- // exclusively on LMI's microcontroller products.
- //
- // The software is owned by LMI and/or its suppliers, and is protected under
- // applicable copyright laws. All rights are reserved. You may not combine
- // this software with "viral" open-source software in order to form a larger
- // program. Any use in violation of the foregoing restrictions may subject
- // the user to criminal sanctions under applicable laws, as well as to civil
- // liability for the breach of the terms and conditions of this license.
- //
- // THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
- // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
- // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
- // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
- // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
- //
- // This is part of revision 4694 of the Stellaris Peripheral Driver Library.
- //
- //*****************************************************************************
- //*****************************************************************************
- //
- //! \addtogroup gpio_api
- //! @{
- //
- //*****************************************************************************
- #include "inc/hw_gpio.h"
- #include "inc/hw_ints.h"
- #include "inc/hw_memmap.h"
- #include "inc/hw_sysctl.h"
- #include "inc/hw_types.h"
- #include "driverlib/debug.h"
- #include "driverlib/gpio.h"
- #include "driverlib/interrupt.h"
- //*****************************************************************************
- //
- // The base addresses of all the GPIO modules. Both the APB and AHB apertures
- // are provided.
- //
- //*****************************************************************************
- static const unsigned long g_pulGPIOBaseAddrs[] =
- {
- GPIO_PORTA_BASE, GPIO_PORTA_AHB_BASE,
- GPIO_PORTB_BASE, GPIO_PORTB_AHB_BASE,
- GPIO_PORTC_BASE, GPIO_PORTC_AHB_BASE,
- GPIO_PORTD_BASE, GPIO_PORTD_AHB_BASE,
- GPIO_PORTE_BASE, GPIO_PORTE_AHB_BASE,
- GPIO_PORTF_BASE, GPIO_PORTF_AHB_BASE,
- GPIO_PORTG_BASE, GPIO_PORTG_AHB_BASE,
- GPIO_PORTH_BASE, GPIO_PORTH_AHB_BASE,
- GPIO_PORTJ_BASE, GPIO_PORTJ_AHB_BASE,
- };
- //*****************************************************************************
- //
- //! \internal
- //! Checks a GPIO base address.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //!
- //! This function determines if a GPIO port base address is valid.
- //!
- //! \return Returns \b true if the base address is valid and \b false
- //! otherwise.
- //
- //*****************************************************************************
- #ifdef DEBUG
- static tBoolean
- GPIOBaseValid(unsigned long ulPort)
- {
- return((ulPort == GPIO_PORTA_BASE) || (ulPort == GPIO_PORTA_AHB_BASE) ||
- (ulPort == GPIO_PORTB_BASE) || (ulPort == GPIO_PORTB_AHB_BASE) ||
- (ulPort == GPIO_PORTC_BASE) || (ulPort == GPIO_PORTC_AHB_BASE) ||
- (ulPort == GPIO_PORTD_BASE) || (ulPort == GPIO_PORTD_AHB_BASE) ||
- (ulPort == GPIO_PORTE_BASE) || (ulPort == GPIO_PORTE_AHB_BASE) ||
- (ulPort == GPIO_PORTF_BASE) || (ulPort == GPIO_PORTF_AHB_BASE) ||
- (ulPort == GPIO_PORTG_BASE) || (ulPort == GPIO_PORTG_AHB_BASE) ||
- (ulPort == GPIO_PORTH_BASE) || (ulPort == GPIO_PORTH_AHB_BASE) ||
- (ulPort == GPIO_PORTJ_BASE) || (ulPort == GPIO_PORTJ_AHB_BASE));
- }
- #endif
- //*****************************************************************************
- //
- //! \internal
- //! Gets the GPIO interrupt number.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //!
- //! Given a GPIO base address, returns the corresponding interrupt number.
- //!
- //! \return Returns a GPIO interrupt number, or -1 if \e ulPort is invalid.
- //
- //*****************************************************************************
- static long
- GPIOGetIntNumber(unsigned long ulPort)
- {
- unsigned int ulInt;
- //
- // Determine the GPIO interrupt number for the given module.
- //
- switch(ulPort)
- {
- case GPIO_PORTA_BASE:
- case GPIO_PORTA_AHB_BASE:
- {
- ulInt = INT_GPIOA;
- break;
- }
- case GPIO_PORTB_BASE:
- case GPIO_PORTB_AHB_BASE:
- {
- ulInt = INT_GPIOB;
- break;
- }
- case GPIO_PORTC_BASE:
- case GPIO_PORTC_AHB_BASE:
- {
- ulInt = INT_GPIOC;
- break;
- }
- case GPIO_PORTD_BASE:
- case GPIO_PORTD_AHB_BASE:
- {
- ulInt = INT_GPIOD;
- break;
- }
- case GPIO_PORTE_BASE:
- case GPIO_PORTE_AHB_BASE:
- {
- ulInt = INT_GPIOE;
- break;
- }
- case GPIO_PORTF_BASE:
- case GPIO_PORTF_AHB_BASE:
- {
- ulInt = INT_GPIOF;
- break;
- }
- case GPIO_PORTG_BASE:
- case GPIO_PORTG_AHB_BASE:
- {
- ulInt = INT_GPIOG;
- break;
- }
- case GPIO_PORTH_BASE:
- case GPIO_PORTH_AHB_BASE:
- {
- ulInt = INT_GPIOH;
- break;
- }
- case GPIO_PORTJ_BASE:
- case GPIO_PORTJ_AHB_BASE:
- {
- ulInt = INT_GPIOJ;
- break;
- }
- default:
- {
- return(-1);
- }
- }
- //
- // Return GPIO interrupt number.
- //
- return(ulInt);
- }
- //*****************************************************************************
- //
- //! Sets the direction and mode of the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port
- //! \param ucPins is the bit-packed representation of the pin(s).
- //! \param ulPinIO is the pin direction and/or mode.
- //!
- //! This function will set the specified pin(s) on the selected GPIO port
- //! as either an input or output under software control, or it will set the
- //! pin to be under hardware control.
- //!
- //! The parameter \e ulPinIO is an enumerated data type that can be one of
- //! the following values:
- //!
- //! - \b GPIO_DIR_MODE_IN
- //! - \b GPIO_DIR_MODE_OUT
- //! - \b GPIO_DIR_MODE_HW
- //!
- //! where \b GPIO_DIR_MODE_IN specifies that the pin will be programmed as
- //! a software controlled input, \b GPIO_DIR_MODE_OUT specifies that the pin
- //! will be programmed as a software controlled output, and
- //! \b GPIO_DIR_MODE_HW specifies that the pin will be placed under
- //! hardware control.
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIODirModeSet(unsigned long ulPort, unsigned char ucPins,
- unsigned long ulPinIO)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- ASSERT((ulPinIO == GPIO_DIR_MODE_IN) || (ulPinIO == GPIO_DIR_MODE_OUT) ||
- (ulPinIO == GPIO_DIR_MODE_HW));
- //
- // Set the pin direction and mode.
- //
- HWREG(ulPort + GPIO_O_DIR) = ((ulPinIO & 1) ?
- (HWREG(ulPort + GPIO_O_DIR) | ucPins) :
- (HWREG(ulPort + GPIO_O_DIR) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_AFSEL) = ((ulPinIO & 2) ?
- (HWREG(ulPort + GPIO_O_AFSEL) | ucPins) :
- (HWREG(ulPort + GPIO_O_AFSEL) &
- ~(ucPins)));
- }
- //*****************************************************************************
- //
- //! Gets the direction and mode of a pin.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPin is the pin number.
- //!
- //! This function gets the direction and control mode for a specified pin on
- //! the selected GPIO port. The pin can be configured as either an input or
- //! output under software control, or it can be under hardware control. The
- //! type of control and direction are returned as an enumerated data type.
- //!
- //! \return Returns one of the enumerated data types described for
- //! GPIODirModeSet().
- //
- //*****************************************************************************
- unsigned long
- GPIODirModeGet(unsigned long ulPort, unsigned char ucPin)
- {
- unsigned long ulDir, ulAFSEL;
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- ASSERT(ucPin < 8);
- //
- // Convert from a pin number to a bit position.
- //
- ucPin = 1 << ucPin;
- //
- // Return the pin direction and mode.
- //
- ulDir = HWREG(ulPort + GPIO_O_DIR);
- ulAFSEL = HWREG(ulPort + GPIO_O_AFSEL);
- return(((ulDir & ucPin) ? 1 : 0) | ((ulAFSEL & ucPin) ? 2 : 0));
- }
- //*****************************************************************************
- //
- //! Sets the interrupt type for the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //! \param ulIntType specifies the type of interrupt trigger mechanism.
- //!
- //! This function sets up the various interrupt trigger mechanisms for the
- //! specified pin(s) on the selected GPIO port.
- //!
- //! The parameter \e ulIntType is an enumerated data type that can be one of
- //! the following values:
- //!
- //! - \b GPIO_FALLING_EDGE
- //! - \b GPIO_RISING_EDGE
- //! - \b GPIO_BOTH_EDGES
- //! - \b GPIO_LOW_LEVEL
- //! - \b GPIO_HIGH_LEVEL
- //!
- //! where the different values describe the interrupt detection mechanism
- //! (edge or level) and the particular triggering event (falling, rising,
- //! or both edges for edge detect, low or high for level detect).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note In order to avoid any spurious interrupts, the user must
- //! ensure that the GPIO inputs remain stable for the duration of
- //! this function.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOIntTypeSet(unsigned long ulPort, unsigned char ucPins,
- unsigned long ulIntType)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- ASSERT((ulIntType == GPIO_FALLING_EDGE) ||
- (ulIntType == GPIO_RISING_EDGE) || (ulIntType == GPIO_BOTH_EDGES) ||
- (ulIntType == GPIO_LOW_LEVEL) || (ulIntType == GPIO_HIGH_LEVEL));
- //
- // Set the pin interrupt type.
- //
- HWREG(ulPort + GPIO_O_IBE) = ((ulIntType & 1) ?
- (HWREG(ulPort + GPIO_O_IBE) | ucPins) :
- (HWREG(ulPort + GPIO_O_IBE) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_IS) = ((ulIntType & 2) ?
- (HWREG(ulPort + GPIO_O_IS) | ucPins) :
- (HWREG(ulPort + GPIO_O_IS) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_IEV) = ((ulIntType & 4) ?
- (HWREG(ulPort + GPIO_O_IEV) | ucPins) :
- (HWREG(ulPort + GPIO_O_IEV) & ~(ucPins)));
- }
- //*****************************************************************************
- //
- //! Gets the interrupt type for a pin.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPin is the pin number.
- //!
- //! This function gets the interrupt type for a specified pin on the selected
- //! GPIO port. The pin can be configured as a falling edge, rising edge, or
- //! both edge detected interrupt, or it can be configured as a low level or
- //! high level detected interrupt. The type of interrupt detection mechanism
- //! is returned as an enumerated data type.
- //!
- //! \return Returns one of the enumerated data types described for
- //! GPIOIntTypeSet().
- //
- //*****************************************************************************
- unsigned long
- GPIOIntTypeGet(unsigned long ulPort, unsigned char ucPin)
- {
- unsigned long ulIBE, ulIS, ulIEV;
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- ASSERT(ucPin < 8);
- //
- // Convert from a pin number to a bit position.
- //
- ucPin = 1 << ucPin;
- //
- // Return the pin interrupt type.
- //
- ulIBE = HWREG(ulPort + GPIO_O_IBE);
- ulIS = HWREG(ulPort + GPIO_O_IS);
- ulIEV = HWREG(ulPort + GPIO_O_IEV);
- return(((ulIBE & ucPin) ? 1 : 0) | ((ulIS & ucPin) ? 2 : 0) |
- ((ulIEV & ucPin) ? 4 : 0));
- }
- //*****************************************************************************
- //
- //! Sets the pad configuration for the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //! \param ulStrength specifies the output drive strength.
- //! \param ulPinType specifies the pin type.
- //!
- //! This function sets the drive strength and type for the specified pin(s)
- //! on the selected GPIO port. For pin(s) configured as input ports, the
- //! pad is configured as requested, but the only real effect on the input
- //! is the configuration of the pull-up or pull-down termination.
- //!
- //! The parameter \e ulStrength can be one of the following values:
- //!
- //! - \b GPIO_STRENGTH_2MA
- //! - \b GPIO_STRENGTH_4MA
- //! - \b GPIO_STRENGTH_8MA
- //! - \b GPIO_STRENGTH_8MA_SC
- //!
- //! where \b GPIO_STRENGTH_xMA specifies either 2, 4, or 8 mA output drive
- //! strength, and \b GPIO_OUT_STRENGTH_8MA_SC specifies 8 mA output drive with
- //! slew control.
- //!
- //! The parameter \e ulPinType can be one of the following values:
- //!
- //! - \b GPIO_PIN_TYPE_STD
- //! - \b GPIO_PIN_TYPE_STD_WPU
- //! - \b GPIO_PIN_TYPE_STD_WPD
- //! - \b GPIO_PIN_TYPE_OD
- //! - \b GPIO_PIN_TYPE_OD_WPU
- //! - \b GPIO_PIN_TYPE_OD_WPD
- //! - \b GPIO_PIN_TYPE_ANALOG
- //!
- //! where \b GPIO_PIN_TYPE_STD* specifies a push-pull pin, \b GPIO_PIN_TYPE_OD*
- //! specifies an open-drain pin, \b *_WPU specifies a weak pull-up, \b *_WPD
- //! specifies a weak pull-down, and \b GPIO_PIN_TYPE_ANALOG specifies an
- //! analog input (for the comparators).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPadConfigSet(unsigned long ulPort, unsigned char ucPins,
- unsigned long ulStrength, unsigned long ulPinType)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- ASSERT((ulStrength == GPIO_STRENGTH_2MA) ||
- (ulStrength == GPIO_STRENGTH_4MA) ||
- (ulStrength == GPIO_STRENGTH_8MA) ||
- (ulStrength == GPIO_STRENGTH_8MA_SC));
- ASSERT((ulPinType == GPIO_PIN_TYPE_STD) ||
- (ulPinType == GPIO_PIN_TYPE_STD_WPU) ||
- (ulPinType == GPIO_PIN_TYPE_STD_WPD) ||
- (ulPinType == GPIO_PIN_TYPE_OD) ||
- (ulPinType == GPIO_PIN_TYPE_OD_WPU) ||
- (ulPinType == GPIO_PIN_TYPE_OD_WPD) ||
- (ulPinType == GPIO_PIN_TYPE_ANALOG))
- //
- // Set the output drive strength.
- //
- HWREG(ulPort + GPIO_O_DR2R) = ((ulStrength & 1) ?
- (HWREG(ulPort + GPIO_O_DR2R) | ucPins) :
- (HWREG(ulPort + GPIO_O_DR2R) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_DR4R) = ((ulStrength & 2) ?
- (HWREG(ulPort + GPIO_O_DR4R) | ucPins) :
- (HWREG(ulPort + GPIO_O_DR4R) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_DR8R) = ((ulStrength & 4) ?
- (HWREG(ulPort + GPIO_O_DR8R) | ucPins) :
- (HWREG(ulPort + GPIO_O_DR8R) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_SLR) = ((ulStrength & 8) ?
- (HWREG(ulPort + GPIO_O_SLR) | ucPins) :
- (HWREG(ulPort + GPIO_O_SLR) & ~(ucPins)));
- //
- // Set the pin type.
- //
- HWREG(ulPort + GPIO_O_ODR) = ((ulPinType & 1) ?
- (HWREG(ulPort + GPIO_O_ODR) | ucPins) :
- (HWREG(ulPort + GPIO_O_ODR) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_PUR) = ((ulPinType & 2) ?
- (HWREG(ulPort + GPIO_O_PUR) | ucPins) :
- (HWREG(ulPort + GPIO_O_PUR) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_PDR) = ((ulPinType & 4) ?
- (HWREG(ulPort + GPIO_O_PDR) | ucPins) :
- (HWREG(ulPort + GPIO_O_PDR) & ~(ucPins)));
- HWREG(ulPort + GPIO_O_DEN) = ((ulPinType & 8) ?
- (HWREG(ulPort + GPIO_O_DEN) | ucPins) :
- (HWREG(ulPort + GPIO_O_DEN) & ~(ucPins)));
- //
- // Set the analog mode select register. This register only appears in
- // DustDevil-class (and later) devices, but is a harmless write on
- // Sandstorm- and Fury-class devices.
- //
- HWREG(ulPort + GPIO_O_AMSEL) =
- ((ulPinType == GPIO_PIN_TYPE_ANALOG) ?
- (HWREG(ulPort + GPIO_O_AMSEL) | ucPins) :
- (HWREG(ulPort + GPIO_O_AMSEL) & ~(ucPins)));
- }
- //*****************************************************************************
- //
- //! Gets the pad configuration for a pin.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPin is the pin number.
- //! \param pulStrength is a pointer to storage for the output drive strength.
- //! \param pulPinType is a pointer to storage for the output drive type.
- //!
- //! This function gets the pad configuration for a specified pin on the
- //! selected GPIO port. The values returned in \e pulStrength and
- //! \e pulPinType correspond to the values used in GPIOPadConfigSet(). This
- //! function also works for pin(s) configured as input pin(s); however, the
- //! only meaningful data returned is whether the pin is terminated with a
- //! pull-up or down resistor.
- //!
- //! \return None
- //
- //*****************************************************************************
- void
- GPIOPadConfigGet(unsigned long ulPort, unsigned char ucPin,
- unsigned long *pulStrength, unsigned long *pulPinType)
- {
- unsigned long ulTemp1, ulTemp2, ulTemp3, ulTemp4;
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- ASSERT(ucPin < 8);
- //
- // Convert from a pin number to a bit position.
- //
- ucPin = (1 << ucPin);
- //
- // Get the drive strength for this pin.
- //
- ulTemp1 = HWREG(ulPort + GPIO_O_DR2R);
- ulTemp2 = HWREG(ulPort + GPIO_O_DR4R);
- ulTemp3 = HWREG(ulPort + GPIO_O_DR8R);
- ulTemp4 = HWREG(ulPort + GPIO_O_SLR);
- *pulStrength = (((ulTemp1 & ucPin) ? 1 : 0) | ((ulTemp2 & ucPin) ? 2 : 0) |
- ((ulTemp3 & ucPin) ? 4 : 0) | ((ulTemp4 & ucPin) ? 8 : 0));
- //
- // Get the pin type.
- //
- ulTemp1 = HWREG(ulPort + GPIO_O_ODR);
- ulTemp2 = HWREG(ulPort + GPIO_O_PUR);
- ulTemp3 = HWREG(ulPort + GPIO_O_PDR);
- ulTemp4 = HWREG(ulPort + GPIO_O_DEN);
- *pulPinType = (((ulTemp1 & ucPin) ? 1 : 0) | ((ulTemp2 & ucPin) ? 2 : 0) |
- ((ulTemp3 & ucPin) ? 4 : 0) | ((ulTemp4 & ucPin) ? 8 : 0));
- }
- //*****************************************************************************
- //
- //! Enables interrupts for the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! Unmasks the interrupt for the specified pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinIntEnable(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Enable the interrupts.
- //
- HWREG(ulPort + GPIO_O_IM) |= ucPins;
- }
- //*****************************************************************************
- //
- //! Disables interrupts for the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! Masks the interrupt for the specified pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinIntDisable(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Disable the interrupts.
- //
- HWREG(ulPort + GPIO_O_IM) &= ~(ucPins);
- }
- //*****************************************************************************
- //
- //! Gets interrupt status for the specified GPIO port.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param bMasked specifies whether masked or raw interrupt status is
- //! returned.
- //!
- //! If \e bMasked is set as \b true, then the masked interrupt status is
- //! returned; otherwise, the raw interrupt status will be returned.
- //!
- //! \return Returns a bit-packed byte, where each bit that is set identifies
- //! an active masked or raw interrupt, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //! Bits 31:8 should be ignored.
- //
- //*****************************************************************************
- long
- GPIOPinIntStatus(unsigned long ulPort, tBoolean bMasked)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Return the interrupt status.
- //
- if(bMasked)
- {
- return(HWREG(ulPort + GPIO_O_MIS));
- }
- else
- {
- return(HWREG(ulPort + GPIO_O_RIS));
- }
- }
- //*****************************************************************************
- //
- //! Clears the interrupt for the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! Clears the interrupt for the specified pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note Since there is a write buffer in the Cortex-M3 processor, it may take
- //! several clock cycles before the interrupt source is actually cleared.
- //! Therefore, it is recommended that the interrupt source be cleared early in
- //! the interrupt handler (as opposed to the very last action) to avoid
- //! returning from the interrupt handler before the interrupt source is
- //! actually cleared. Failure to do so may result in the interrupt handler
- //! being immediately reentered (since NVIC still sees the interrupt source
- //! asserted).
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinIntClear(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Clear the interrupts.
- //
- HWREG(ulPort + GPIO_O_ICR) = ucPins;
- }
- //*****************************************************************************
- //
- //! Registers an interrupt handler for a GPIO port.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param pfnIntHandler is a pointer to the GPIO port interrupt handling
- //! function.
- //!
- //! This function will ensure that the interrupt handler specified by
- //! \e pfnIntHandler is called when an interrupt is detected from the selected
- //! GPIO port. This function will also enable the corresponding GPIO interrupt
- //! in the interrupt controller; individual pin interrupts and interrupt
- //! sources must be enabled with GPIOPinIntEnable().
- //!
- //! \sa IntRegister() for important information about registering interrupt
- //! handlers.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPortIntRegister(unsigned long ulPort, void (*pfnIntHandler)(void))
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Get the interrupt number associated with the specified GPIO.
- //
- ulPort = GPIOGetIntNumber(ulPort);
- //
- // Register the interrupt handler.
- //
- IntRegister(ulPort, pfnIntHandler);
- //
- // Enable the GPIO interrupt.
- //
- IntEnable(ulPort);
- }
- //*****************************************************************************
- //
- //! Removes an interrupt handler for a GPIO port.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //!
- //! This function will unregister the interrupt handler for the specified
- //! GPIO port. This function will also disable the corresponding
- //! GPIO port interrupt in the interrupt controller; individual GPIO interrupts
- //! and interrupt sources must be disabled with GPIOPinIntDisable().
- //!
- //! \sa IntRegister() for important information about registering interrupt
- //! handlers.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPortIntUnregister(unsigned long ulPort)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Get the interrupt number associated with the specified GPIO.
- //
- ulPort = GPIOGetIntNumber(ulPort);
- //
- // Disable the GPIO interrupt.
- //
- IntDisable(ulPort);
- //
- // Unregister the interrupt handler.
- //
- IntUnregister(ulPort);
- }
- //*****************************************************************************
- //
- //! Reads the values present of the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The values at the specified pin(s) are read, as specified by \e ucPins.
- //! Values are returned for both input and output pin(s), and the value
- //! for pin(s) that are not specified by \e ucPins are set to 0.
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return Returns a bit-packed byte providing the state of the specified
- //! pin, where bit 0 of the byte represents GPIO port pin 0, bit 1 represents
- //! GPIO port pin 1, and so on. Any bit that is not specified by \e ucPins
- //! is returned as a 0. Bits 31:8 should be ignored.
- //
- //*****************************************************************************
- long
- GPIOPinRead(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Return the pin value(s).
- //
- return(HWREG(ulPort + (GPIO_O_DATA + (ucPins << 2))));
- }
- //*****************************************************************************
- //
- //! Writes a value to the specified pin(s).
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //! \param ucVal is the value to write to the pin(s).
- //!
- //! Writes the corresponding bit values to the output pin(s) specified by
- //! \e ucPins. Writing to a pin configured as an input pin has no effect.
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinWrite(unsigned long ulPort, unsigned char ucPins, unsigned char ucVal)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Write the pins.
- //
- HWREG(ulPort + (GPIO_O_DATA + (ucPins << 2))) = ucVal;
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use as analog-to-digital converter inputs.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The analog-to-digital converter input pins must be properly configured
- //! to function correctly on DustDevil-class devices. This function provides
- //! the proper configuration for those pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into an ADC input; it only
- //! configures an ADC input pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeADC(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be inputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_IN);
- //
- // Set the pad(s) for analog operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_ANALOG);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use as a CAN device.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The CAN pins must be properly configured for the CAN peripherals to
- //! function correctly. This function provides a typical configuration for
- //! those pin(s); other configurations may work as well depending upon the
- //! board setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a CAN pin; it only
- //! configures a CAN pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeCAN(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be inputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_8MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use as an analog comparator input.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The analog comparator input pins must be properly configured for the analog
- //! comparator to function correctly. This function provides the proper
- //! configuration for those pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into an analog comparator input;
- //! it only configures an analog comparator pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeComparator(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be inputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_IN);
- //
- // Set the pad(s) for analog operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_ANALOG);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use as GPIO inputs.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The GPIO pins must be properly configured in order to function correctly as
- //! GPIO inputs; this is especially true of Fury-class devices where the
- //! digital input enable is turned off by default. This function provides the
- //! proper configuration for those pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeGPIOInput(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be inputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_IN);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use as GPIO outputs.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The GPIO pins must be properly configured in order to function correctly as
- //! GPIO outputs; this is especially true of Fury-class devices where the
- //! digital input enable is turned off by default. This function provides the
- //! proper configuration for those pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeGPIOOutput(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be outputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_OUT);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use as GPIO open drain outputs.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The GPIO pins must be properly configured in order to function correctly as
- //! GPIO outputs; this is especially true of Fury-class devices where the
- //! digital input enable is turned off by default. This function provides the
- //! proper configuration for those pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeGPIOOutputOD(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be outputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_OUT);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_OD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the I2C peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The I2C pins must be properly configured for the I2C peripheral to function
- //! correctly. This function provides the proper configuration for those
- //! pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into an I2C pin; it only
- //! configures an I2C pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeI2C(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for open-drain operation with a weak pull-up.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_OD_WPU);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the PWM peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The PWM pins must be properly configured for the PWM peripheral to function
- //! correctly. This function provides a typical configuration for those
- //! pin(s); other configurations may work as well depending upon the board
- //! setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a PWM pin; it only
- //! configures a PWM pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypePWM(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the QEI peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The QEI pins must be properly configured for the QEI peripheral to function
- //! correctly. This function provides a typical configuration for those
- //! pin(s); other configurations may work as well depending upon the board
- //! setup (for example, not using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a QEI pin; it only
- //! configures a QEI pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeQEI(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation with a weak pull-up.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD_WPU);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the SSI peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The SSI pins must be properly configured for the SSI peripheral to function
- //! correctly. This function provides a typical configuration for those
- //! pin(s); other configurations may work as well depending upon the board
- //! setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a SSI pin; it only
- //! configures a SSI pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeSSI(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the Timer peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The CCP pins must be properly configured for the timer peripheral to
- //! function correctly. This function provides a typical configuration for
- //! those pin(s); other configurations may work as well depending upon the
- //! board setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a timer pin; it only
- //! configures a timer pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeTimer(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the UART peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! The UART pins must be properly configured for the UART peripheral to
- //! function correctly. This function provides a typical configuration for
- //! those pin(s); other configurations may work as well depending upon the
- //! board setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a UART pin; it only
- //! configures a UART pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeUART(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the USB peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! Some USB digital pins must be properly configured for the USB peripheral to
- //! function correctly. This function provides a typical configuration for
- //! the digital USB pin(s); other configurations may work as well depending
- //! upon the board setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a USB pin; it only
- //! configures a USB pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeUSBDigital(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the USB peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! Some USB analog pins must be properly configured for the USB peripheral to
- //! function correctly. This function provides the proper configuration for
- //! those pin(s).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a USB pin; it only
- //! configures a USB pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeUSBAnalog(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be inputs.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_IN);
- //
- // Set the pad(s) for analog operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_ANALOG);
- }
- //*****************************************************************************
- //
- //! Configures pin(s) for use by the I2S peripheral.
- //!
- //! \param ulPort is the base address of the GPIO port.
- //! \param ucPins is the bit-packed representation of the pin(s).
- //!
- //! Some I2S pins must be properly configured for the I2S peripheral to
- //! function correctly. This function provides a typical configuration for
- //! the digital I2S pin(s); other configurations may work as well depending
- //! upon the board setup (for example, using the on-chip pull-ups).
- //!
- //! The pin(s) are specified using a bit-packed byte, where each bit that is
- //! set identifies the pin to be accessed, and where bit 0 of the byte
- //! represents GPIO port pin 0, bit 1 represents GPIO port pin 1, and so on.
- //!
- //! \note This cannot be used to turn any pin into a I2S pin; it only
- //! configures a I2S pin for proper operation.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinTypeI2S(unsigned long ulPort, unsigned char ucPins)
- {
- //
- // Check the arguments.
- //
- ASSERT(GPIOBaseValid(ulPort));
- //
- // Make the pin(s) be peripheral controlled.
- //
- GPIODirModeSet(ulPort, ucPins, GPIO_DIR_MODE_HW);
- //
- // Set the pad(s) for standard push-pull operation.
- //
- GPIOPadConfigSet(ulPort, ucPins, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD);
- }
- //*****************************************************************************
- //
- //! Configures the alternate function of a GPIO pin.
- //!
- //! \param ulPinConfig is the pin configuration value, specified as one of the
- //! \b GPIO_P??_??? values.
- //!
- //! This function configures the pin mux that selects the peripheral function
- //! associated with a particular GPIO pin. Only one peripheral function at a
- //! time can be associated with a GPIO pin, and each peripheral function should
- //! only be associated with a single GPIO pin at a time (despite the fact that
- //! many of them can be associated with more than one GPIO pin).
- //!
- //! \note This function is only valid on Tempest-class devices.
- //!
- //! \return None.
- //
- //*****************************************************************************
- void
- GPIOPinConfigure(unsigned long ulPinConfig)
- {
- unsigned long ulBase, ulShift;
- //
- // Check the argument.
- //
- ASSERT(((ulPinConfig >> 16) & 0xff) < 9);
- ASSERT(((ulPinConfig >> 8) & 0xe3) == 0);
- //
- // Extract the base address index from the input value.
- //
- ulBase = (ulPinConfig >> 16) & 0xff;
- //
- // Get the base address of the GPIO module, selecting either the APB or the
- // AHB aperture as appropriate.
- //
- if(HWREG(SYSCTL_GPIOHSCTL) & (1 << ulBase))
- {
- ulBase = g_pulGPIOBaseAddrs[(ulBase << 1) + 1];
- }
- else
- {
- ulBase = g_pulGPIOBaseAddrs[ulBase << 1];
- }
- //
- // Extract the shift from the input value.
- //
- ulShift = (ulPinConfig >> 8) & 0xff;
- //
- // Write the requested pin muxing value for this GPIO pin.
- //
- HWREG(ulBase + GPIO_O_PCTL) = ((HWREG(ulBase + GPIO_O_PCTL) &
- ~(0xf << ulShift)) |
- ((ulPinConfig & 0xf) << ulShift));
- }
- //*****************************************************************************
- //
- // Close the Doxygen group.
- //! @}
- //
- //*****************************************************************************
|