OpenCores
URL https://opencores.org/ocsvn/usb_fpga_1_2/usb_fpga_1_2/trunk

Subversion Repositories usb_fpga_1_2

[/] [usb_fpga_1_2/] [trunk/] [include/] [ztex.h] - Diff between revs 2 and 3

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 3
/*!
/*!
   ZTEX Firmware Kit for EZ-USB Microcontrollers
   ZTEX Firmware Kit for EZ-USB Microcontrollers
   Copyright (C) 2008-2009 ZTEX e.K.
   Copyright (C) 2008-2009 ZTEX e.K.
   http://www.ztex.de
   http://www.ztex.de
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 3 as
   it under the terms of the GNU General Public License version 3 as
   published by the Free Software Foundation.
   published by the Free Software Foundation.
 
 
   This program is distributed in the hope that it will be useful, but
   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   General Public License for more details.
   General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, see http://www.gnu.org/licenses/.
   along with this program; if not, see http://www.gnu.org/licenses/.
!*/
!*/
 
 
/*
/*
   Puts everything in the right order together.
   Puts everything together.
*/
*/
 
 
#ifndef[ZTEX_H]
#ifndef[ZTEX_H]
#define[ZTEX_H]
#define[ZTEX_H]
 
 
/* *********************************************************************
/* *********************************************************************
   ***** include the basic functions ***********************************
   ***** include the basic functions ***********************************
   ********************************************************************* */
   ********************************************************************* */
#include[ztex-utils.h]
#include[ztex-utils.h]
 
 
 
 
/* *********************************************************************
/* *********************************************************************
 
   ***** EEPROM support and some I2c helper functions ******************
 
   ********************************************************************* */
 
#ifneq[EEPROM_DISABLED][1]
 
#include[ztex-eeprom.h]
 
#endif
 
 
 
/* *********************************************************************
   ***** Flash memory support ******************************************
   ***** Flash memory support ******************************************
   ********************************************************************* */
   ********************************************************************* */
#ifeq[FLASH_ENABLED][1]
#ifeq[FLASH_ENABLED][1]
 
 
#ifeq[PRODUCT_IS][UFM-1_1]
#ifeq[PRODUCT_IS][UFM-1_1]
 
#define[MMC_PORT][E]
 
#define[MMC_BIT_CS][7]
 
#define[MMC_BIT_DI][6]
 
#define[MMC_BIT_DO][4]
 
#define[MMC_BIT_CLK][5]
#include[ztex-flash1.h]
#include[ztex-flash1.h]
 
 
#elifeq[PRODUCT_IS][UFM-1_2]
#elifeq[PRODUCT_IS][UFM-1_2]
 
#define[MMC_PORT][E]
 
#define[MMC_BIT_CS][7]
 
#define[MMC_BIT_DI][6]
 
#define[MMC_BIT_DO][4]
 
#define[MMC_BIT_CLK][5]
 
#include[ztex-flash1.h]
 
 
 
#elifeq[PRODUCT_IS][UM-1_0]
 
#define[MMC_PORT][C]
 
#define[MMC_BIT_CS][7]
 
#define[MMC_BIT_DI][6]
 
#define[MMC_BIT_DO][4]
 
#define[MMC_BIT_CLK][5]
#include[ztex-flash1.h]
#include[ztex-flash1.h]
 
 
 
#elifeq[PRODUCT_IS][UM-1_10]
 
#define[MMC_PORT][C]
 
#define[MMC_BIT_CS][4]
 
#define[MMC_BIT_DI][5]
 
#define[MMC_BIT_DO][7]
 
#define[MMC_BIT_CLK][6]
 
#include[ztex-flash1.h]
 
 
#else
#else
#warning[FLASH option is not supported by this product]
#warning[FLASH option is not supported by this product]
#define[FLASH_ENABLED][0]
#define[FLASH_ENABLED][0]
#endif
#endif
#endif
#endif
 
 
 
 
/* *********************************************************************
 
   ***** EEPROM support and some I2c helper functions ******************
 
   ********************************************************************* */
 
#ifneq[EEPROM_DISABLED][1]
 
#include[ztex-eeprom.h]
 
#endif
 
 
 
/* *********************************************************************
/* *********************************************************************
   ***** FPGA configuration support ************************************
   ***** FPGA configuration support ************************************
   ********************************************************************* */
   ********************************************************************* */
#ifeq[PRODUCT_IS][UFM-1_0]
#ifeq[PRODUCT_IS][UFM-1_0]
#include[ztex-fpga.h]
#include[ztex-fpga.h]
#elifeq[PRODUCT_IS][UFM-1_1]
#elifeq[PRODUCT_IS][UFM-1_1]
#include[ztex-fpga.h]
#include[ztex-fpga.h]
#elifeq[PRODUCT_IS][UFM-1_2]
#elifeq[PRODUCT_IS][UFM-1_2]
#include[ztex-fpga.h]
#include[ztex-fpga.h]
#endif
#endif
 
 
/* *********************************************************************
/* *********************************************************************
   ***** define the descriptors and the interrupt routines *************
   ***** define the descriptors and the interrupt routines *************
   ********************************************************************* */
   ********************************************************************* */
#include[ztex-descriptors.h]
#include[ztex-descriptors.h]
#include[ztex-isr.h]
#include[ztex-isr.h]
 
 
 
 
/* *********************************************************************
/* *********************************************************************
   ***** init_USB ******************************************************
   ***** init_USB ******************************************************
   ********************************************************************* */
   ********************************************************************* */
#define[EPXCFG(][);][    EP$0CFG = 
#define[EPXCFG(][);][    EP$0CFG = 
#ifeq[EP$0_DIR][IN]
#ifeq[EP$0_DIR][IN]
        bmBIT7 | bmBIT6
        bmBIT7 | bmBIT6
#elifeq[EP$0_DIR][OUT]
#elifeq[EP$0_DIR][OUT]
        bmBIT7
        bmBIT7
#else
#else
        0
        0
#endif
#endif
#ifeq[EP$0_TYPE][BULK]
#ifeq[EP$0_TYPE][BULK]
        | bmBIT5
        | bmBIT5
#elifeq[EP$0_TYPE][ISO]
#elifeq[EP$0_TYPE][ISO]
        | bmBIT4
        | bmBIT4
#elifeq[EP$0_TYPE][INT]
#elifeq[EP$0_TYPE][INT]
        | bmBIT5 | bmBIT4
        | bmBIT5 | bmBIT4
#endif
#endif
#ifeq[EP$0_SIZE][1024]
#ifeq[EP$0_SIZE][1024]
        | bmBIT3
        | bmBIT3
#endif
#endif
#ifeq[EP$0_BUFFERS][2]
#ifeq[EP$0_BUFFERS][2]
        | bmBIT1
        | bmBIT1
#elifeq[EP$0_BUFFERS][3]
#elifeq[EP$0_BUFFERS][3]
        | bmBIT1 | bmBIT0
        | bmBIT1 | bmBIT0
#endif  
#endif  
        ;
        ;
        SYNCDELAY;
        SYNCDELAY;
]
]
 
 
#define[EP1XCFG(][);][#ifeq[EP$0_TYPE][BULK]
#define[EP1XCFG(][);][#ifeq[EP$0_TYPE][BULK]
        EP$0CFG = bmBIT7 | bmBIT5;
        EP$0CFG = bmBIT7 | bmBIT5;
#elifeq[EP$0_TYPE][ISO]
#elifeq[EP$0_TYPE][ISO]
        EP$0CFG = bmBIT7 | bmBIT4;
        EP$0CFG = bmBIT7 | bmBIT4;
#elifeq[EP$0_TYPE][INT]
#elifeq[EP$0_TYPE][INT]
        EP$0CFG = bmBIT7 | bmBIT5 | bmBIT4;
        EP$0CFG = bmBIT7 | bmBIT5 | bmBIT4;
#else   
#else   
        EP$0CFG = 0;
        EP$0CFG = 0;
#endif
#endif
        SYNCDELAY;
        SYNCDELAY;
]
]
 
 
void init_USB ()
void init_USB ()
{
{
 
    USBCS |= 0x08;
 
 
    CPUCS = bmBIT4 | bmBIT1;
    CPUCS = bmBIT4 | bmBIT1;
    CKCON &= ~7;
    CKCON &= ~7;
 
 
 
#ifeq[PRODUCT_IS][UFM-1_0]
 
    IOA1 = 1;
 
    OEA |= bmBIT1;
 
#elifeq[PRODUCT_IS][UFM-1_1]
    IOA1 = 1;
    IOA1 = 1;
    OEA |= bmBIT1;
    OEA |= bmBIT1;
 
#elifeq[PRODUCT_IS][UFM-1_2]
 
    IOA1 = 1;
 
    OEA |= bmBIT1;
 
#endif
 
 
    EA = 0;
    EA = 0;
 
    EUSB = 0;
 
 
    ENABLE_AVUSB;
    ENABLE_AVUSB;
 
 
    INIT_INTERRUPT_VECTOR(INTVEC_SUDAV, SUDAV_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SUDAV, SUDAV_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SOF, SOF_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SOF, SOF_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SUTOK, SUTOK_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SUTOK, SUTOK_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SUSPEND, SUSP_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_SUSPEND, SUSP_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_USBRESET, URES_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_USBRESET, URES_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_HISPEED, HSGRANT_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_HISPEED, HSGRANT_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP0ACK, EP0ACK_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP0ACK, EP0ACK_ISR);
 
 
    INIT_INTERRUPT_VECTOR(INTVEC_EP0IN, EP0IN_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP0IN, EP0IN_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP0OUT, EP0OUT_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP0OUT, EP0OUT_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP1IN, EP1IN_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP1IN, EP1IN_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP1OUT, EP1OUT_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP1OUT, EP1OUT_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP2, EP2_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP2, EP2_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP4, EP4_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP4, EP4_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP6, EP6_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP6, EP6_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP8, EP8_ISR);
    INIT_INTERRUPT_VECTOR(INTVEC_EP8, EP8_ISR);
 
 
    EXIF &= ~bmBIT4;
    EXIF &= ~bmBIT4;
    USBIRQ = 0x7f;
    USBIRQ = 0x7f;
    USBIE |= 0x7f;
    USBIE |= 0x7f;
    EPIRQ = 0xff;
    EPIRQ = 0xff;
    EPIE = 0xff;
    EPIE = 0xff;
 
 
    EUSB = 1;
    EUSB = 1;
    EA = 1;
    EA = 1;
 
 
    USBCS |= 0x08;
 
    USBCS |= bmBIT7 | bmBIT1;
 
    wait(500);
 
    USBCS &= ~0x08;
 
    wait(500);
 
 
 
    EP1XCFG(1IN);
    EP1XCFG(1IN);
    EP1XCFG(1OUT);
    EP1XCFG(1OUT);
    EPXCFG(2);
    EPXCFG(2);
    EPXCFG(4);
    EPXCFG(4);
    EPXCFG(6);
    EPXCFG(6);
    EPXCFG(8);
    EPXCFG(8);
 
 
 
#ifeq[FLASH_ENABLED][1]
 
    flash_init();
 
#endif
 
#ifeq[FLASH_BITSTREAM_ENABLED][1]
 
    fpga_configure_from_flash_init();
 
#endif
 
 
 
    USBCS |= bmBIT7 | bmBIT1;
 
    wait(250);
 
    USBCS &= ~0x08;
}
}
 
 
 
 
#endif   /* ZTEX_H */
#endif   /* ZTEX_H */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.