FX2 CPU Source OUTa

所属分类:USB编程
开发工具:C/C++
文件大小:32KB
下载次数:346
上传日期:2005-08-01 20:23:21
上 传 者sanmao3
说明:  演示CY7C68013如何接受OUT包的源程序
(Source code to demo how CY7C68013 to receive OUT packege.)

文件列表:
build.bat (1962, 2001-11-05)
dscr.a51 (8538, 2001-11-15)
fw.c (13499, 2001-11-15)
FX2 SRCOUT_M Example Build ENV.pif (967, 2001-11-15)
gpif.c (27924, 2001-11-05)
srcout data.txt (365, 2001-11-06)
srcout_m.c (22462, 2001-11-15)
srcout_m.hex (10581, 2001-11-15)
srcout_m.lnp (197, 2001-11-06)
srcout_m.Opt (1113, 2001-11-05)
srcout_m.plg (196, 2001-11-06)
srcout_m.Uv2 (1976, 2001-11-05)
SRCO_M01.TIF (27870, 2001-11-07)
SRCO_M02.TIF (27870, 2001-11-07)
SRCO_M03.TIF (27870, 2001-11-07)

This directory contains 8051 firmware for the Cypress Semiconductor EZ-USB FX2 chip. The purpose of this code is to demonstrate how the cpu can source an OUT packet in EZUSB FX2 GPIF applications... Chapter 10 of the EZUSB FX2 TRM explains the General Programmable Interface (GPIF)... This example configures FX2 as follows: 01). EP2 512 4x BULK OUT - 8-bit async MANUAL mode 02). EP6 512 4x BULK IN - 8-bit async MANUAL mode .....from "the user": 01). Initially strap: - RDY0 to GND - RDY1 to VCC (through a 10k ohm resistor) 02). Setup Logic Analyzer (similar to *.TIF files) 03). Download "srcout_m.hex" 04). Issue "Get String" 05). Issue "Get Pipes" 06). Issue "Get Conf" 07). Issue "Get Dev" 08). Trigger Logic Analyzer on CTL1 going low 09). Issue 0xC0 VendReg *** IN 10). BulkTrans EP2 OUT 512 data 11). Examine Logic Analyzer output - should look similar to "SRCO_M01.TIF" 12). Trigger Logic Analyzer on CTL1 going low 13). Issue 0xC2 VendReg *** IN 14). Examine Logic Analyzer output - should look similar to "SRCO_M02.TIF" 15). Trigger Logic Analyzer on CTL1 going low 16). BulkTrans EP2 OUT 512 data 17). Examine Logic Analyzer output - should look similar to "SRCO_M03.TIF" The "srcout_m.hex" file loads into internal memory. ...issue "build -i" at the command prompt... This example is for illustrative purpose(s)... You'll need a Logic Analyzer tied to the DK 2x10 protoboard expansion headers (mapped for HP Logic Analyzer Pods)... Explaining this implementation... ================================= Both RDY0 and RDY1 are active low signals: RDY0=1 when peripheral "not empty" RDY0=0 when peripheral "empty" RDY1=1 when peripheral "not full" RDY1=0 when peripheral "full" Both CTL0 and CTL1 are active low signals: CTL0=1 when P_RD deasserted CTL0=0 when P_RD asserted CTL1=1 when P_WR deasserted CTL1=0 when P_WR asserted The FIFOWr waveform descriptor has been implemented as follows: S0: Examine RDY0 status for "not empty" if empty transition to S6 else transition to S1 S1: Assert P_RD for 3 ifclk cycles S2: Sample current byte on PORTB into interface FIFO, advance fifo ptr Assert P_RD for 1 ifclk cycle S3: Assert P_RD for 1 ifclk cycle Transition to IDLE (S7) S6: Deassert P_RD Signal cpu of "empty" condition (see GPIFWF_ISR in srcout_m.c) Wait until cpu issues GPIFABORT S7: IDLE Deassert all CTLx The FIFORd waveform descriptor has been implemented as follows: S0: Examine RDY1 status for "not full" if full transition to S0 (wait for "not full" condition) else transition to S1 S1: Assert P_WR for 3 ifclk cycles Drive current byte in interface FIFO on PORTB S2: Advance fifo pointer Deassert P_WR for 1 ifclk cycle S3: Deassert P_WR for 1 ifclk cycle Transition to IDLE (S7) S7: IDLE Deassert all CTLx Single Read and Single Write waveform descriptor have been implemented but are not used in this example. The "#ifdef TESTING_GPIF" in "gpif.c" is there because this example is frameworks based ("fw.c" supplies function main();) and none of the "canned" gpif functions are being used in this implementation... The firmware in "srcout_m.c" handles USB data as follows: To handle OUT data -> if endp "not empty" commit pkt. to peripheral domain if gpif idle if interface fifo "not empty" if peripheral "not full" trigger gpif FIFOWr To handle IN data -> if gpif idle if peripheral "not empty" if interface fifo "not full" trigger gpif FIFORd wait for transaction to complete commit pkt. to host domain

近期下载者

相关文件


收藏者