pca953x.rst 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. ============================================
  2. PCA953x I²C GPIO expander compatibility list
  3. ============================================
  4. :Author: Levente Révész <levente.revesz@eilabs.com>
  5. I went through all the datasheets and created this note listing
  6. chip functions and register layouts.
  7. Overview of chips
  8. =================
  9. Chips with the basic 4 registers
  10. --------------------------------
  11. These chips have 4 register banks: input, output, invert and direction.
  12. Each of these banks contains (lines/8) registers, one for each GPIO port.
  13. Banks offset is always a power of 2:
  14. - 4 lines -> bank offset is 1
  15. - 8 lines -> bank offset is 1
  16. - 16 lines -> bank offset is 2
  17. - 24 lines -> bank offset is 4
  18. - 32 lines -> bank offset is 4
  19. - 40 lines -> bank offset is 8
  20. For example, register layout of GPIO expander with 24 lines:
  21. +------+-----------------+--------+
  22. | addr | function | bank |
  23. +======+=================+========+
  24. | 00 | input port0 | |
  25. +------+-----------------+ |
  26. | 01 | input port1 | bank 0 |
  27. +------+-----------------+ |
  28. | 02 | input port2 | |
  29. +------+-----------------+--------+
  30. | 03 | n/a | |
  31. +------+-----------------+--------+
  32. | 04 | output port0 | |
  33. +------+-----------------+ |
  34. | 05 | output port1 | bank 1 |
  35. +------+-----------------+ |
  36. | 06 | output port2 | |
  37. +------+-----------------+--------+
  38. | 07 | n/a | |
  39. +------+-----------------+--------+
  40. | 08 | invert port0 | |
  41. +------+-----------------+ |
  42. | 09 | invert port1 | bank 2 |
  43. +------+-----------------+ |
  44. | 0A | invert port2 | |
  45. +------+-----------------+--------+
  46. | 0B | n/a | |
  47. +------+-----------------+--------+
  48. | 0C | direction port0 | |
  49. +------+-----------------+ |
  50. | 0D | direction port1 | bank 3 |
  51. +------+-----------------+ |
  52. | 0E | direction port2 | |
  53. +------+-----------------+--------+
  54. | 0F | n/a | |
  55. +------+-----------------+--------+
  56. .. note::
  57. This is followed by all supported chips, except by pcal6534.
  58. The table below shows the offsets for each of the compatible chips:
  59. ========== ===== ========= ===== ====== ====== =========
  60. compatible lines interrupt input output invert direction
  61. ========== ===== ========= ===== ====== ====== =========
  62. pca9536 4 no 00 01 02 03
  63. pca9537 4 yes 00 01 02 03
  64. pca6408 8 yes 00 01 02 03
  65. tca6408 8 yes 00 01 02 03
  66. pca9534 8 yes 00 01 02 03
  67. pca9538 8 yes 00 01 02 03
  68. pca9554 8 yes 00 01 02 03
  69. tca9554 8 yes 00 01 02 03
  70. pca9556 8 no 00 01 02 03
  71. pca9557 8 no 00 01 02 03
  72. pca6107 8 yes 00 01 02 03
  73. pca6416 16 yes 00 02 04 06
  74. tca6416 16 yes 00 02 04 06
  75. pca9535 16 yes 00 02 04 06
  76. pca9539 16 yes 00 02 04 06
  77. tca9539 16 yes 00 02 04 06
  78. pca9555 16 yes 00 02 04 06
  79. max7318 16 yes 00 02 04 06
  80. tca6424 24 yes 00 04 08 0C
  81. ========== ===== ========= ===== ====== ====== =========
  82. Chips with additional timeout_en register
  83. -----------------------------------------
  84. These Maxim chips have a bus timeout function which can be enabled in
  85. the timeout_en register. This is present in only two chips. Defaults to
  86. timeout disabled.
  87. ========== ===== ========= ===== ====== ====== ========= ==========
  88. compatible lines interrupt input output invert direction timeout_en
  89. ========== ===== ========= ===== ====== ====== ========= ==========
  90. max7310 8 no 00 01 02 03 04
  91. max7312 16 yes 00 02 04 06 08
  92. ========== ===== ========= ===== ====== ====== ========= ==========
  93. Chips with additional int_mask register
  94. ---------------------------------------
  95. These chips have an interrupt mask register in addition to the 4 basic
  96. registers. The interrupt masks default to all interrupts disabled. To
  97. use interrupts with these chips, the driver has to set the int_mask
  98. register.
  99. ========== ===== ========= ===== ====== ====== ========= ========
  100. compatible lines interrupt input output invert direction int_mask
  101. ========== ===== ========= ===== ====== ====== ========= ========
  102. pca9505 40 yes 00 08 10 18 20
  103. pca9506 40 yes 00 08 10 18 20
  104. ========== ===== ========= ===== ====== ====== ========= ========
  105. Chips with additional int_mask and out_conf registers
  106. -----------------------------------------------------
  107. This chip has an interrupt mask register, and an output port
  108. configuration register, which can select between push-pull and
  109. open-drain modes. Each bit controls two lines. Both of these registers
  110. are present in PCAL chips as well, albeit the out_conf works
  111. differently.
  112. ========== ===== ========= ===== ====== ====== ========= ======== ========
  113. compatible lines interrupt input output invert direction int_mask out_conf
  114. ========== ===== ========= ===== ====== ====== ========= ======== ========
  115. pca9698 40 yes 00 08 10 18 20 28
  116. ========== ===== ========= ===== ====== ====== ========= ======== ========
  117. pca9698 also has a "master output" register for setting all outputs per
  118. port to the same value simultaneously, and a chip specific mode register
  119. for various additional chip settings.
  120. ========== ============= ====
  121. compatible master_output mode
  122. ========== ============= ====
  123. pca9698 29 2A
  124. ========== ============= ====
  125. Chips with LED blink and intensity control
  126. ------------------------------------------
  127. These Maxim chips have no invert register.
  128. They have two sets of output registers (output0 and output1). An internal
  129. timer alternates the effective output between the values set in these
  130. registers, if blink mode is enabled in the blink register. The
  131. master_intensity register and the intensity registers together define
  132. the PWM intensity value for each pair of outputs.
  133. These chips can be used as simple GPIO expanders if the driver handles the
  134. input, output0 and direction registers.
  135. ========== ===== ========= ===== ======= ========= ======= ================ ===== =========
  136. compatible lines interrupt input output0 direction output1 master_intensity blink intensity
  137. ========== ===== ========= ===== ======= ========= ======= ================ ===== =========
  138. max7315 8 yes 00 01 03 09 0E 0F 10
  139. max7313 16 yes 00 02 06 0A 0E 0F 10
  140. ========== ===== ========= ===== ======= ========= ======= ================ ===== =========
  141. Basic PCAL chips
  142. ----------------
  143. ========== ===== ========= ===== ====== ====== =========
  144. compatible lines interrupt input output invert direction
  145. ========== ===== ========= ===== ====== ====== =========
  146. pcal6408 8 yes 00 01 02 03
  147. pcal9554b 8 yes 00 01 02 03
  148. pcal6416 16 yes 00 02 04 06
  149. pcal9535 16 yes 00 02 04 06
  150. pcal9555a 16 yes 00 02 04 06
  151. tcal6408 8 yes 00 01 02 03
  152. tcal6416 16 yes 00 02 04 06
  153. ========== ===== ========= ===== ====== ====== =========
  154. These chips have several additional features:
  155. 1. output drive strength setting (out_strength)
  156. 2. input latch (in_latch)
  157. 3. pull-up/pull-down (pull_in, pull_sel)
  158. 4. push-pull/open-drain outputs (out_conf)
  159. 5. interrupt mask and interrupt status (int_mask, int_status)
  160. ========== ============ ======== ======= ======== ======== ========== ========
  161. compatible out_strength in_latch pull_en pull_sel int_mask int_status out_conf
  162. ========== ============ ======== ======= ======== ======== ========== ========
  163. pcal6408 40 42 43 44 45 46 4F
  164. pcal9554b 40 42 43 44 45 46 4F
  165. pcal6416 40 44 46 48 4A 4C 4F
  166. pcal9535 40 44 46 48 4A 4C 4F
  167. pcal9555a 40 44 46 48 4A 4C 4F
  168. tcal6408 40 42 43 44 45 46 4F
  169. tcal6416 40 44 46 48 4A 4C 4F
  170. ========== ============ ======== ======= ======== ======== ========== ========
  171. Currently the driver has support for the input latch, pull-up/pull-down
  172. and uses int_mask and int_status for interrupts.
  173. PCAL chips with extended interrupt and output configuration functions
  174. ---------------------------------------------------------------------
  175. ========== ===== ========= ===== ====== ====== =========
  176. compatible lines interrupt input output invert direction
  177. ========== ===== ========= ===== ====== ====== =========
  178. pcal6524 24 yes 00 04 08 0C
  179. pcal6534 34 yes 00 05 0A 0F
  180. ========== ===== ========= ===== ====== ====== =========
  181. These chips have the full PCAL register set, plus the following functions:
  182. 1. interrupt event selection: level, rising, falling, any edge
  183. 2. clear interrupt status per line
  184. 3. read input without clearing interrupt status
  185. 4. individual output config (push-pull/open-drain) per output line
  186. 5. debounce inputs
  187. ========== ============ ======== ======= ======== ======== ========== ========
  188. compatible out_strength in_latch pull_en pull_sel int_mask int_status out_conf
  189. ========== ============ ======== ======= ======== ======== ========== ========
  190. pcal6524 40 48 4C 50 54 58 5C
  191. pcal6534 30 3A 3F 44 49 4E 53
  192. ========== ============ ======== ======= ======== ======== ========== ========
  193. ========== ======== ========= ============ ============== ======== ==============
  194. compatible int_edge int_clear input_status indiv_out_conf debounce debounce_count
  195. ========== ======== ========= ============ ============== ======== ==============
  196. pcal6524 60 68 6C 70 74 76
  197. pcal6534 54 5E 63 68 6D 6F
  198. ========== ======== ========= ============ ============== ======== ==============
  199. As can be seen in the table above, pcal6534 does not follow the usual
  200. bank spacing rule. Its banks are closely packed instead.
  201. PCA957X chips with a completely different register layout
  202. ---------------------------------------------------------
  203. These chips have the basic 4 registers, but at unusual addresses.
  204. Additionally, they have:
  205. 1. pull-up/pull-down (pull_sel)
  206. 2. a global pull enable, defaults to disabled (config)
  207. 3. interrupt mask, interrupt status (int_mask, int_status)
  208. ========== ===== ========= ===== ====== ====== ======== ========= ====== ======== ==========
  209. compatible lines interrupt input invert config pull_sel direction output int_mask int_status
  210. ========== ===== ========= ===== ====== ====== ======== ========= ====== ======== ==========
  211. pca9574 8 yes 00 01 02 03 04 05 06 07
  212. pca9575 16 yes 00 02 04 06 08 0A 0C 0E
  213. ========== ===== ========= ===== ====== ====== ======== ========= ====== ======== ==========
  214. Currently the driver supports none of the advanced features.
  215. XRA1202
  216. -------
  217. Basic 4 registers, plus advanced features:
  218. 1. interrupt mask, defaults to interrupts disabled
  219. 2. interrupt status
  220. 3. interrupt event selection, level, rising, falling, any edge
  221. (int_mask, rising_mask, falling_mask)
  222. 4. pull-up (no pull-down)
  223. 5. tri-state
  224. 6. debounce
  225. ========== ===== ========= ===== ====== ====== ========= =========
  226. compatible lines interrupt input output invert direction pullup_en
  227. ========== ===== ========= ===== ====== ====== ========= =========
  228. xra1202 8 yes 00 01 02 03 04
  229. ========== ===== ========= ===== ====== ====== ========= =========
  230. ========== ======== ======== ========== =========== ============ ========
  231. compatible int_mask tristate int_status rising_mask falling_mask debounce
  232. ========== ======== ======== ========== =========== ============ ========
  233. xra1202 05 06 07 08 09 0A
  234. ========== ======== ======== ========== =========== ============ ========
  235. Overview of functions
  236. =====================
  237. This section lists chip functions that are supported by the driver
  238. already, or are at least common in multiple chips.
  239. Input, Output, Invert, Direction
  240. --------------------------------
  241. The basic 4 GPIO functions are present in all but one chip category, i.e.
  242. `Chips with LED blink and intensity control`_ are missing the invert
  243. register.
  244. 3 different layouts are used for these registers:
  245. 1. banks 0, 1, 2, 3 with bank offsets of 2^n
  246. - all other chips
  247. 2. banks 0, 1, 2, 3 with closely packed banks
  248. - pcal6534
  249. 3. banks 0, 5, 1, 4 with bank offsets of 2^n
  250. - pca9574
  251. - pca9575
  252. Interrupts
  253. ----------
  254. Only an interrupt mask register
  255. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  256. The same layout is used for all of these:
  257. 1. bank 5 with bank offsets of 2^n
  258. - pca9505
  259. - pca9506
  260. - pca9698
  261. Interrupt mask and interrupt status registers
  262. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  263. These work the same way in all of the chips: mask and status have
  264. one bit per line, 1 in the mask means interrupt enabled.
  265. Layouts:
  266. 1. base offset 0x40, bank 5 and bank 6, bank offsets of 2^n
  267. - pcal6408
  268. - pcal6416
  269. - pcal9535
  270. - pcal9554b
  271. - pcal9555a
  272. - pcal6524
  273. - tcal6408
  274. - tcal6416
  275. 2. base offset 0x30, bank 5 and 6, closely packed banks
  276. - pcal6534
  277. 3. bank 6 and 7, bank offsets of 2^n
  278. - pca9574
  279. - pca9575
  280. 4. bank 5 and 7, bank offsets of 2^n
  281. - xra1202
  282. Interrupt on specific edges
  283. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  284. `PCAL chips with extended interrupt and output configuration functions`_
  285. have an int_edge register. This contains 2 bits per line, one of 4 events
  286. can be selected for each line:
  287. 0: level, 1: rising edge, 2: falling edge, 3: any edge
  288. Layouts:
  289. 1. base offset 0x40, bank 7, bank offsets of 2^n
  290. - pcal6524
  291. 2. base offset 0x30, bank 7 + offset 0x01, closely packed banks
  292. (out_conf is 1 byte, not (lines/8) bytes, hence the 0x01 offset)
  293. - pcal6534
  294. `XRA1202`_ chips have a different mechanism for the same thing: they have
  295. a rising mask and a falling mask, with one bit per line.
  296. Layout:
  297. 1. bank 5, bank offsets of 2^n
  298. Input latch
  299. -----------
  300. Only `Basic PCAL chips`_ and
  301. `PCAL chips with extended interrupt and output configuration functions`_
  302. have this function. When the latch is enabled, the interrupt is not cleared
  303. until the input port is read. When the latch is disabled, the interrupt
  304. is cleared even if the input register is not read, if the input pin returns
  305. to the logic value it had before generating the interrupt. Defaults to latch
  306. disabled.
  307. Currently the driver enables the latch for each line with interrupt
  308. enabled.
  309. An interrupt status register records which pins triggered an interrupt.
  310. However, the status register and the input port register must be read
  311. separately; there is no atomic mechanism to read both simultaneously, so races
  312. are possible. Refer to the chapter `Interrupt source detection`_ to understand
  313. the implications of this and how the driver still makes use of the latching
  314. feature.
  315. 1. base offset 0x40, bank 2, bank offsets of 2^n
  316. - pcal6408
  317. - pcal6416
  318. - pcal9535
  319. - pcal9554b
  320. - pcal9555a
  321. - pcal6524
  322. - tcal6408
  323. - tcal6416
  324. 2. base offset 0x30, bank 2, closely packed banks
  325. - pcal6534
  326. Pull-up and pull-down
  327. ---------------------
  328. `Basic PCAL chips`_ and
  329. `PCAL chips with extended interrupt and output configuration functions`_
  330. use the same mechanism: their pull_en register enables the pull-up or pull-down
  331. function, and their pull_sel register chooses the direction. They all use one
  332. bit per line.
  333. 0: pull-down, 1: pull-up
  334. Layouts:
  335. 1. base offset 0x40, bank 3 (en) and 4 (sel), bank offsets of 2^n
  336. - pcal6408
  337. - pcal6416
  338. - pcal9535
  339. - pcal9554b
  340. - pcal9555a
  341. - pcal6524
  342. 2. base offset 0x30, bank 3 (en) and 4 (sel), closely packed banks
  343. - pcal6534
  344. `PCA957X chips with a completely different register layout`_ have a pull_sel
  345. register with one bit per line, and a global pull_en bit in their config
  346. register.
  347. Layout:
  348. 1. bank 2 (config), bank 3 (sel), bank offsets of 2^n
  349. - pca9574
  350. - pca9575
  351. `XRA1202`_ chips can only pull-up. They have a pullup_en register.
  352. Layout:
  353. 1. bank 4, bank offsets of 2^n
  354. - xra1202
  355. Push-pull and open-drain
  356. ------------------------
  357. `Chips with additional int_mask and out_conf registers`_ have this function,
  358. but only for select IO ports. Register has 1 bit per 2 lines. In pca9698,
  359. only port0 and port1 have this function.
  360. 0: open-drain, 1: push-pull
  361. Layout:
  362. 1. base offset 5*bankoffset
  363. - pca9698
  364. `Basic PCAL chips`_ have 1 bit per port in one single out_conf register.
  365. Only whole ports can be configured.
  366. 0: push-pull, 1: open-drain
  367. Layout:
  368. 1. base offset 0x4F
  369. - pcal6408
  370. - pcal6416
  371. - pcal9535
  372. - pcal9554b
  373. - pcal9555a
  374. - tcal6408
  375. - tcal6416
  376. `PCAL chips with extended interrupt and output configuration functions`_
  377. can set this for each line individually. They have the same per-port out_conf
  378. register as `Basic PCAL chips`_, but they also have an indiv_out_conf register
  379. with one bit per line, which inverts the effect of the port-wise setting.
  380. 0: push-pull, 1: open-drain
  381. Layouts:
  382. 1. base offset 0x40 + 7*bankoffset (out_conf),
  383. base offset 0x60, bank 4 (indiv_out_conf) with bank offset of 2^n
  384. - pcal6524
  385. 2. base offset 0x30 + 7*banksize (out_conf),
  386. base offset 0x54, bank 4 (indiv_out_conf), closely packed banks
  387. - pcal6534
  388. This function is currently not supported by the driver.
  389. Output drive strength
  390. ---------------------
  391. Only PCAL chips have this function. 2 bits per line.
  392. ==== ==============
  393. bits drive strength
  394. ==== ==============
  395. 00 0.25x
  396. 01 0.50x
  397. 10 0.75x
  398. 11 1.00x
  399. ==== ==============
  400. 1. base offset 0x40, bank 0 and 1, bank offsets of 2^n
  401. - pcal6408
  402. - pcal6416
  403. - pcal9535
  404. - pcal9554b
  405. - pcal9555a
  406. - pcal6524
  407. - tcal6408
  408. - tcal6416
  409. 2. base offset 0x30, bank 0 and 1, closely packed banks
  410. - pcal6534
  411. Currently not supported by the driver.
  412. Interrupt source detection
  413. ==========================
  414. When triggered by the GPIO expander's interrupt, the driver determines which
  415. IRQs are pending by reading the input port register.
  416. To be able to filter on specific interrupt events for all compatible devices,
  417. the driver keeps track of the previous input state of the lines, and emits an
  418. IRQ only for the correct edge or level. This system works irrespective of the
  419. number of enabled interrupts. Events will not be missed even if they occur
  420. between the GPIO expander's interrupt and the actual I2C read. Edges could of
  421. course be missed if the related signal level changes back to the value
  422. previously saved by the driver before the I2C read. PCAL variants offer input
  423. latching for that reason.
  424. PCAL input latching
  425. -------------------
  426. The PCAL variants have an input latch and the driver enables this for all
  427. interrupt-enabled lines. The interrupt is then only cleared when the input port
  428. is read out. These variants provide an interrupt status register that records
  429. which pins triggered an interrupt, but the status and input registers cannot be
  430. read atomically. If another interrupt occurs on a different line after the
  431. status register has been read but before the input port register is sampled,
  432. that event will not be reflected in the earlier status snapshot, so relying
  433. solely on the interrupt status register is insufficient.
  434. Thus, the PCAL variants also have to use the existing level-change logic.
  435. For short pulses, the first edge is captured when the input register is read,
  436. but if the signal returns to its previous level before this read, the second
  437. edge is not observed. As a result, successive pulses can produce identical
  438. input values at read time and no level change is detected, causing interrupts
  439. to be missed. Below timing diagram shows this situation where the top signal is
  440. the input pin level and the bottom signal indicates the latched value::
  441. ─────┐ ┌──*───────────────┐ ┌──*─────────────────┐ ┌──*───
  442. │ │ . │ │ . │ │ .
  443. │ │ │ │ │ │ │ │ │
  444. └──*──┘ │ └──*──┘ │ └──*──┘ │
  445. Input │ │ │ │ │ │
  446. ▼ │ ▼ │ ▼ │
  447. IRQ │ IRQ │ IRQ │
  448. . . .
  449. ─────┐ .┌──────────────┐ .┌────────────────┐ .┌──
  450. │ │ │ │ │ │
  451. │ │ │ │ │ │
  452. └────────*┘ └────────*┘ └────────*┘
  453. Latched │ │ │
  454. ▼ ▼ ▼
  455. READ 0 READ 0 READ 0
  456. NO CHANGE NO CHANGE
  457. To deal with this, events indicated by the interrupt status register are merged
  458. with events detected through the existing level-change logic. As a result:
  459. - short pulses, whose second edges are invisible, are detected via the
  460. interrupt status register, and
  461. - interrupts that occur between the status and input reads are still
  462. caught by the generic level-change logic.
  463. Note that this is still best-effort: the status and input registers are read
  464. separately, and short pulses on other lines may occur in between those reads.
  465. Such pulses can still be latched as an interrupt without leaving an observable
  466. level change at read time, and may not be attributable to a specific edge. This
  467. does not reduce detection compared to the generic path, but reflects inherent
  468. atomicity limitations.
  469. Datasheets
  470. ==========
  471. - MAX7310: https://datasheets.maximintegrated.com/en/ds/MAX7310.pdf
  472. - MAX7312: https://datasheets.maximintegrated.com/en/ds/MAX7312.pdf
  473. - MAX7313: https://datasheets.maximintegrated.com/en/ds/MAX7313.pdf
  474. - MAX7315: https://datasheets.maximintegrated.com/en/ds/MAX7315.pdf
  475. - MAX7318: https://datasheets.maximintegrated.com/en/ds/MAX7318.pdf
  476. - PCA6107: https://pdf1.alldatasheet.com/datasheet-pdf/view/161780/TI/PCA6107.html
  477. - PCA6408A: https://www.nxp.com/docs/en/data-sheet/PCA6408A.pdf
  478. - PCA6416A: https://www.nxp.com/docs/en/data-sheet/PCA6416A.pdf
  479. - PCA9505: https://www.nxp.com/docs/en/data-sheet/PCA9505_9506.pdf
  480. - PCA9505: https://www.nxp.com/docs/en/data-sheet/PCA9505_9506.pdf
  481. - PCA9534: https://www.nxp.com/docs/en/data-sheet/PCA9534.pdf
  482. - PCA9535: https://www.nxp.com/docs/en/data-sheet/PCA9535_PCA9535C.pdf
  483. - PCA9536: https://www.nxp.com/docs/en/data-sheet/PCA9536.pdf
  484. - PCA9537: https://www.nxp.com/docs/en/data-sheet/PCA9537.pdf
  485. - PCA9538: https://www.nxp.com/docs/en/data-sheet/PCA9538.pdf
  486. - PCA9539: https://www.nxp.com/docs/en/data-sheet/PCA9539_PCA9539R.pdf
  487. - PCA9554: https://www.nxp.com/docs/en/data-sheet/PCA9554_9554A.pdf
  488. - PCA9555: https://www.nxp.com/docs/en/data-sheet/PCA9555.pdf
  489. - PCA9556: https://www.nxp.com/docs/en/data-sheet/PCA9556.pdf
  490. - PCA9557: https://www.nxp.com/docs/en/data-sheet/PCA9557.pdf
  491. - PCA9574: https://www.nxp.com/docs/en/data-sheet/PCA9574.pdf
  492. - PCA9575: https://www.nxp.com/docs/en/data-sheet/PCA9575.pdf
  493. - PCA9698: https://www.nxp.com/docs/en/data-sheet/PCA9698.pdf
  494. - PCAL6408A: https://www.nxp.com/docs/en/data-sheet/PCAL6408A.pdf
  495. - PCAL6416A: https://www.nxp.com/docs/en/data-sheet/PCAL6416A.pdf
  496. - PCAL6524: https://www.nxp.com/docs/en/data-sheet/PCAL6524.pdf
  497. - PCAL6534: https://www.nxp.com/docs/en/data-sheet/PCAL6534.pdf
  498. - PCAL9535A: https://www.nxp.com/docs/en/data-sheet/PCAL9535A.pdf
  499. - PCAL9554B: https://www.nxp.com/docs/en/data-sheet/PCAL9554B_PCAL9554C.pdf
  500. - PCAL9555A: https://www.nxp.com/docs/en/data-sheet/PCAL9555A.pdf
  501. - TCA6408A: https://www.ti.com/lit/gpn/tca6408a
  502. - TCA6416: https://www.ti.com/lit/gpn/tca6416
  503. - TCA6424: https://www.ti.com/lit/gpn/tca6424
  504. - TCA9539: https://www.ti.com/lit/gpn/tca9539
  505. - TCA9554: https://www.ti.com/lit/gpn/tca9554
  506. - XRA1202: https://assets.maxlinear.com/web/documents/xra1202_1202p_101_042213.pdf