SNLU223D August   2017  – February 2023 DS90UB954-Q1

 

  1.   DS90UB954-Q1EVM Deserializer User's Guide
  2. Trademarks
  3. Introduction
  4. Quick Start Guide
    1. 3.1 System Requirements
      1. 3.1.1 Included Components
      2. 3.1.2 Additional Required Components
    2. 3.2 Applications Diagram
    3. 3.3 Major Components of DS90UB954-Q1EVM
    4. 3.4 DS90UB954-Q1EVM Setup
  5. DS90UB954-Q1EVM Board Configuration
    1. 4.1 Default Configuration
    2. 4.2 Power Supply
    3. 4.3 Power-over-Coax Interface
    4. 4.4 MIPI CSI-2 Output Signals
    5. 4.5 FPD-Link III Signals
    6. 4.6 I2C Interface
    7. 4.7 Control Interface
  6. Enable and Reset
  7. Use with DS90UB936-Q1
  8. Typical Connection and Test Equipment
  9. Termination Device
  10. Typical Test Setup
  11. 10Equipment References
  12. 11Cable References
  13. 12Software for DS90UB954Q1-EVM Evaluation - Analog LaunchPAD (ALP) Software Setup
    1. 12.1 System Requirements
    2. 12.2 Download Contents
    3. 12.3 Installation of the ALP Software
    4. 12.4 Startup - First Launch
  14. 13Using ALP and DS90UB954 Profile
    1. 13.1 Information Tab
    2. 13.2 Registers Tab
    3. 13.3 Registers Tab - Address 0x00 Expanded
      1. 13.3.1 Port Specific Registers
      2. 13.3.2 36
    4. 13.4 Saving and Loading Register Settings
    5. 13.5 Scripting Tab
      1. 13.5.1 Example Functions
        1. 13.5.1.1 Local I2C Reads/Writes
        2. 13.5.1.2 General I2C Reads/Writes:
        3. 13.5.1.3 I2C Reads/Writes with Multi-Byte Register Addresses
    6. 13.6 GPIO Tab
    7. 13.7 Forwarding Tab
    8. 13.8 CSI Registers Tab
    9. 13.9 Remote Registers Tab
  15. 14Troubleshooting ALP Software
    1. 14.1 ALP Does Not Detect The EVM
    2. 14.2 USB2ANY Firmware Issues
  16. 15DS90UB954-Q1EVM PCB Schematics, Layout and Bill of Materials - DS90UB954-Q1EVM Schematic
  17. 16DS90UB954-Q1 EVM PCB Layout
  18. 17DS90UB954-Q1EVM Bill of Materials
  19. 18Revision History

Local I2C Reads/Writes

These functions will perform reads and writes only for the I2C assigned to board.devAddr, which by default will be the detected address for the DS90UB954-Q1.

    board.ReadReg(Register Address , # of Bytes) OR board.ReadReg(Register Address)I2C Read Command

    • Accepts both hex & decimal inputs
    • Number of bytes will default to 1 if omitted
    • Ex: board.ReadReg(0x00) will return the value in Register 0 for the local device

    board.WriteReg(Register Address , Data)I2C Write Command

    • Accepts both hex & decimal inputs
    • Ex: board.WriteReg(0x01, 0x01) will set Register 0 to have a value of 1

    board.devAddr = [I2C Address]Assigns I2C address to be used for board.ReadReg and board.WriteReg commands

    • Accepts both hex & decimal inputs
    • Uses the 8-bit form of the I2C address
    • Can be used to shorten read/write commands
    • Ex: board.devAddress = 0x60 sets the board address to 0x60