ZHCS761F December 2011 – May 2017 TRF7962A
PRODUCTION DATA.
The communication interface to the reader can be configured in two ways: with a eight line parallel interface (D0:D7) plus DATA_CLK, or with a 3- or 4-wire Serial Peripheral Interface (SPI). The SPI interface uses traditional master out/slave in (MOSI), master in/slave out (MISO), IRQ, and DATA_CLK lines. The SPI can be operated with or without using the slave select line.
These communication modes are mutually exclusive, which means that only one mode can be used at a time in the application.
When the SPI interface is selected, the unused I/O_2, I/O_1, and I/O_0 pins must be hard-wired according to Table 6-6. At power up, the TRF7962A IC samples the status of these three pins and then enters one of the possible SPI modes in Table 6-6.
samples the status of these three pins. If they are not the same (all high or all low), the IC enters one of the possible SPI modes.
The TRF7962A always behaves as the slave, while the microcontroller (MCU) behaves as the master device. The MCU initiates all communications with the TRF7962A. The TRF7962A makes use of the Interrupt Request (IRQ) pin in both parallel and SPI modes to prompt the MCU for servicing attention.
PIN | PARALLEL | PARALLEL DIRECT | SPI WITH SS | SPI WITHOUT SS |
---|---|---|---|---|
DATA_CLK | DATA_CLK | DATA_CLK | DATA_CLK from master | DATA_CLK from master |
I/O_7 | A/D[7] | MOSI(1) = data in (reader in) | MOSI(1) = data in (reader in) | |
I/O_6 | A/D[6] | Direct mode, data out (subcarrier or bit stream) |
MISO(2) = data out (MCU out) | MISO(2) = data out (MCU out) |
I/O_5 (3) | A/D[5] | Direct mode, strobe (bit clock out) | See (3) | See (3) |
I/O_4 | A/D[4] | SS (slave select)(4) | – | |
I/O_3 | A/D[3] | – | – | – |
I/O_2 | A/D[2] | – | At VDD | At VDD |
I/O_1 | A/D[1] | – | At VDD | At VSS |
I/O_0 | A/D[0] | – | At VSS | At VSS |
IRQ | IRQ interrupt | IRQ interrupt | IRQ interrupt | IRQ interrupt |
Communication is initialized by a start condition, which is expected to be followed by an Address/Command word (Adr/Cmd). The Adr/Cmd word is 8 bits long, and Table 6-7 describes its format.
BIT | DESCRIPTION | BIT FUNCTION | ADDRESS | COMMAND |
---|---|---|---|---|
B7 | Command control bit | 0 = Address 1 = Command |
0 | 1 |
B6 | Read/Write | 1 = Read 0 = Write |
R/W | 0 |
B5 | Continuous address mode | 1 = Continuous mode | R/W | 0 |
B4 | Address/command bit 4 | Adr 4 | Cmd 4 | |
B3 | Address/command bit 3 | Adr 3 | Cmd 3 | |
B2 | Address/command bit 2 | Adr 2 | Cmd 2 | |
B1 | Address/command bit 1 | Adr 1 | Cmd 1 | |
B0 | Address/command bit 0 | Adr 0 | Cmd 0 |
The MSB (bit 7) determines if the word is to be used as a command or as an address. The last two columns of Table 6-7 list the function of the separate bits if either address or command is written. Data is expected once the address word is sent. In continuous address mode (continuous mode = 1), the first data that follows the address is written (or read) to (from) the given address. For each additional data, the address is incremented by one. Continuous mode can be used to write to a block of control registers in a single stream without changing the address; for example, setup of the predefined standard control registers from the MCU nonvolatile memory to the reader. In noncontinuous address mode (simple addressed mode), only one data word is expected after the address.
Address Mode is used to write or read the configuration registers or the FIFO. When writing more than 12 bytes to the FIFO, the Continuous Address Mode should be set to 1.
The Command Mode is used to enter a command that results in reader action (for example, initialize transmission, enable reader, and turn reader on or off).
The following examples show the expected communications between an MCU and the TRF7962A.
Table 6-8 lists the format of a continuous address register read, and Figure 6-5 and Figure 6-6 show examples.
Start | Adr x | Data(x) | Data(x+1) | Data(x+2) | Data(x+3) | Data(x+4) | ... | Data(x+n) | StopCont |
Table 6-9 lists the format of a single address register read, and Figure 6-7 and Figure 6-8 show examples.
Start | Adr x | Data(x) | Adr y | Data(y) | ... | Adr z | Data(z) | StopSgl |
Table 6-10 lists the format of the direct command mode, and Figure 6-9 shows an example.
Start | Cmd x | (Optional data or command) | Stop |
The other Direct Command Codes from MCU to TRF7962A are described in Section 6.13.