I2C地址限制

來源:互聯網
上載者:User

在調試一個I2C觸控螢幕的驅動時,它的I2C地址為0X01,最後尋找發現在\linux-3.0\drivers\i2c\i2c-core.c中有檢測I2C地址是否可用就是下面的函數:/* And this is a strict address validity check, used when probing. If a * device uses a reserved address, then it shouldn't be probed. 7-bit * addressing is assumed, 10-bit address devices are rare and should be * explicitly enumerated. */static int i2c_check_addr_validity(unsigned short addr)
/** Reserved addresses per I2C specification:*  0x00       General call address / START byte*  0x01       CBUS address*  0x02       Reserved for different bus format*  0x03       Reserved for future purposes*  0x04-0x07  Hs-mode master code*  0x78-0x7b  10-bit slave addressing*  0x7c-0x7f  Reserved for future purposes*/#if !defined(CONFIG_ARCH_SUN4I)if (addr < 0x08 || addr > 0x77)#else    if (addr < 0x03 || addr > 0x77)#endif        return -EINVAL;return 0;}
同樣在linux2.6.36 中也存在I2C地址的合法性的檢測 \linux-3.0\drivers\i2c\i2c-core.c中

/* Make sure the address is valid */if (addr < 0x03 || addr > 0x77) {dev_warn(&adapter->dev, "Invalid probe address 0x%02x\n",addr);return -EINVAL;}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.