element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Avnet Boards Forums
  • Products
  • Dev Tools
  • Avnet & Tria Boards Community
  • Avnet Boards Forums
  • More
  • Cancel
Avnet Boards Forums
ZedBoard Hardware Design PS SPI Pmod JE7 Hardware system
  • Forum
  • Documents
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Avnet Boards Forums to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 11 replies
  • Subscribers 353 subscribers
  • Views 2262 views
  • Users 0 members are here
Related

PS SPI Pmod JE7 Hardware system

Former Member
Former Member over 12 years ago

Hello everyone,

I'm in the process of interfacing my Avnet CC3000-Pmod Compatible Wi-Fi Adapter to the ZedBoard via the JE7 Pmod header, which is connected to the PS.

At first I thought this should be a simple thing, since creating a hardware system that includes SPI was so simple, but ...

When I try to use the SPI device (via the SpiPs device driver), I am stuck in the XSpiPs_PolledTransfer() function, waiting for the status register flag that indicates the transmission has finished (XSPIPS_IXR_TXOW_MASK). The reason that the flag never comes, is that I read nonsense values from the register (a 0x2 in this case).
Then I added the XSpiPs_SelfTest() function, which failed at the very first register read. So I'm guessing there is something wrong with my hardware design.

I got the Zynq IP setup & configured as follows:

  +--------------------------------+
  |         ZYNQ               DDR +-----> DDR
  |                       FIXED_IO +-----> FIXED_IO
  |                       USBIND_0 +-
-+ TTC0_CLK0_IN         M_AXI_GP0 +-
-+ TTC0_CLK1_IN    TTC0_WAVE0_OUT +-
-+ TTC0_CLK2_IN    TTC0_WAVE1_OUT +-
+-+ M_AXI_GP0_ACLK  TTC0_WAVE2_OUT +-
| |                      FCLK_CLK0 +--+
| |                  FCLK_RESET0_N +- |
| +--------------------------------+  |
+-------------------------------------+

SPI 1: MIO 10 .. 15
SS[1] IO MIO 14
SPI 1 MIO 10 mosi
SPI 1 MIO 11 miso
SPI 1 MIO 12 sclk
SPI 1 MIO 14 ss[1]

The clock is set to ca. 16MHz, which is the maximum the CC3000 can take.

Has anybody had any experience with the CC3000 Adapter, Pmod or SPI on the ZedBoard? I'd be very glad for any help, since I'm pretty much stuck here.

With best regards,
Darius

  • Sign in to reply
  • Cancel
Parents
  • Former Member
    0 Former Member over 12 years ago

    When looking at several Pmods I have with the Maxim peripheral kit, I was surprised to see no standard for the SPI pins (or I2C pins) on the PMODs. The only pins that seem to be standard are power (Vcc on pins 6 and 12) and ground (pins 5 and 11)

    As such, I took a quick look at the pins and matching them between the FPGA and schematics for the JE Pmod, the only one that connects directly to the PS through the MIO.

    From the MIO pin SPI pin links, schematic for the FPGA on the Zedboard, and schematic for the CC3000-Pmod, I get the following:

    CC3000 Pmod pin; JE pin; FPGA pin; MIO Pin using SP1
      SPI_CS  ; JE1  ; A6  ; PS_MIO13 ; ss0
      SPI_DI  ; JE2  ; G7  ; PS_MIO10 ; mosi
      SPI_DO  ; JE3  ; B4  ; PS_MIO11 ; miso
      SPI_CLK ; JE4  ; C5  ; PS_MIO12 ; ck
      SPI_IRQ ; JE7  ; G6  ; PS_MIO0  ; ???

    So it looks like the IRQ needs to be connected to PS_MIO0, which isn't a normal SPI pin, and only listed as a cs1. I see in XPS that MIO0 can be mapped as a GPIO, and maybe it can connect that way? Or maybe you can find another way to map it to the IRQ directly in the MIO setup.

    Personally, I'd use one of the PL Pmods that I can wire the way I want using the EMIO. But maybe you can figure out this last pin?

    -Larry

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 12 years ago

    When looking at several Pmods I have with the Maxim peripheral kit, I was surprised to see no standard for the SPI pins (or I2C pins) on the PMODs. The only pins that seem to be standard are power (Vcc on pins 6 and 12) and ground (pins 5 and 11)

    As such, I took a quick look at the pins and matching them between the FPGA and schematics for the JE Pmod, the only one that connects directly to the PS through the MIO.

    From the MIO pin SPI pin links, schematic for the FPGA on the Zedboard, and schematic for the CC3000-Pmod, I get the following:

    CC3000 Pmod pin; JE pin; FPGA pin; MIO Pin using SP1
      SPI_CS  ; JE1  ; A6  ; PS_MIO13 ; ss0
      SPI_DI  ; JE2  ; G7  ; PS_MIO10 ; mosi
      SPI_DO  ; JE3  ; B4  ; PS_MIO11 ; miso
      SPI_CLK ; JE4  ; C5  ; PS_MIO12 ; ck
      SPI_IRQ ; JE7  ; G6  ; PS_MIO0  ; ???

    So it looks like the IRQ needs to be connected to PS_MIO0, which isn't a normal SPI pin, and only listed as a cs1. I see in XPS that MIO0 can be mapped as a GPIO, and maybe it can connect that way? Or maybe you can find another way to map it to the IRQ directly in the MIO setup.

    Personally, I'd use one of the PL Pmods that I can wire the way I want using the EMIO. But maybe you can figure out this last pin?

    -Larry

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube