1 //*****************************************************************************
3 // pdc.c - Driver for the Peripheral Device Controller (PDC) on the Stellaris
6 // Copyright (c) 2005,2006 Luminary Micro, Inc. All rights reserved.
8 // Software License Agreement
10 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and
11 // exclusively on LMI's Stellaris Family of microcontroller products.
13 // The software is owned by LMI and/or its suppliers, and is protected under
14 // applicable copyright laws. All rights are reserved. Any use in violation
15 // of the foregoing restrictions may subject the user to criminal sanctions
16 // under applicable laws, as well as to civil liability for the breach of the
17 // terms and conditions of this license.
19 // THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
20 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
22 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
23 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
25 // This is part of revision 523 of the Stellaris Driver Library.
27 //*****************************************************************************
29 //*****************************************************************************
31 //! \addtogroup utilities_api
34 //*****************************************************************************
36 #include "hw_memmap.h"
43 //*****************************************************************************
45 //! Initializes the connection to the PDC.
47 //! This function will enable clocking to the SSI and GPIO A modules, configure
48 //! the GPIO pins to be used for an SSI interface, and it will configure the
49 //! SSI as a 1Mb master device, operating in MOTO mode. It will also enable
50 //! the SSI module, and will enable the chip select for the PDC on the
51 //! Stellaris development board.
53 //! This function is contained in <tt>utils/pdc.c</tt>, with
54 //! <tt>utils/pdc.h</tt> containing the API definition for use by applications.
58 //*****************************************************************************
63 // Enable the peripherals used to drive the PDC.
65 SysCtlPeripheralEnable(SYSCTL_PERIPH_SSI);
66 SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA);
69 // Configure the appropriate pins to be SSI instead of GPIO.
71 GPIODirModeSet(GPIO_PORTA_BASE, SSI_CLK | SSI_TX | SSI_RX,
73 GPIODirModeSet(GPIO_PORTA_BASE, SSI_CS, GPIO_DIR_MODE_OUT);
74 GPIOPadConfigSet(GPIO_PORTA_BASE, SSI_CLK, GPIO_STRENGTH_4MA,
75 GPIO_PIN_TYPE_STD_WPU);
78 // Configure the SSI port.
80 SSIConfig(SSI_BASE, SSI_FRF_MOTO_MODE_0, SSI_MODE_MASTER, 1000000, 8);
84 // Reset the PDC SSI state machine. The chip select needs to be held low
85 // for 100ns; the procedure call overhead more than accounts for this time.
87 GPIOPinWrite(GPIO_PORTA_BASE, PDC_CS, 0);
88 GPIOPinWrite(GPIO_PORTA_BASE, PDC_CS, PDC_CS);
91 //*****************************************************************************
93 //! Write a PDC register.
95 //! \param ucAddr specifies the PDC register to write.
96 //! \param ucData specifies the data to write.
98 //! This function will perform the SSI transfers required to write a register
99 //! in the PDC on the Stellaris development board.
101 //! This function is contained in <tt>utils/pdc.c</tt>, with
102 //! <tt>utils/pdc.h</tt> containing the API definition for use by applications.
106 //*****************************************************************************
108 PDCWrite(unsigned char ucAddr, unsigned char ucData)
110 unsigned long ulTemp;
113 // Send address and write command.
115 SSIDataPut(SSI_BASE, (ucAddr & 0x0F) | PDC_WR);
120 SSIDataPut(SSI_BASE, ucData);
123 // Flush data read during address write.
125 SSIDataGet(SSI_BASE, &ulTemp);
128 // Flush data read during data write.
130 SSIDataGet(SSI_BASE, &ulTemp);