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

I2C Reads/Writes with Multi-Byte Register Addresses

These I2C commands will work for any I2C address on the local bus and remote devices configured in the target ID and target alias registers of the device. The 8-bit form of I2C addresses should be used.

    board.ReadI2C(Device Address, Register Address Byte 2,[Register Address Byte 1, # of Bytes]) OR board.ReadI2C(Device Address, Register Address Byte 2, [Register Address Byte 1])I2C Read Command for devices with multi-byte register addresses

    • Accepts both hex & decimal inputs
    • Number of bytes will default to 1 if omitted
    • Ex: board.ReadI2C(0x60, 0x30, [0x00]) will return the value in Register 0x3000 for the device with address 0x60 (8-bit form)

    board.WriteI2C(Device Address, Register Address Byte 2, [Register Address Byte 1, Data])I2C Write Command for devices with multi-byte register addresses

    • Accepts both hex & decimal inputs
    • Number of bytes will default to 1 if omitted
    • • Ex: board.WriteI2C(0x60, 0x30, [0x01, 0x01]) will set Register 0x3000 of the device with address 0x60 (8-bit form) to have a value of 1