1
0
mirror of https://github.com/kidoman/embd synced 2024-06-15 15:19:52 +02:00
embd/i2cdriver.go

64 lines
1.8 KiB
Go
Raw Normal View History

2017-05-22 06:25:30 +02:00
/*
* Copyright (c) Karan Misra 2014
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
* associated documentation files (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge, publish, distribute,
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
* NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// Generic I²C driver.
2014-03-23 09:39:31 +01:00
2014-03-02 20:21:23 +01:00
package embd
import "sync"
type i2cBusFactory func(byte) I2CBus
2014-03-02 20:21:23 +01:00
type i2cDriver struct {
busMap map[byte]I2CBus
2014-03-02 20:21:23 +01:00
busMapLock sync.Mutex
ibf i2cBusFactory
2014-03-02 20:21:23 +01:00
}
// NewI2CDriver returns a I2CDriver interface which allows control
// over the I²C subsystem.
func NewI2CDriver(ibf i2cBusFactory) I2CDriver {
2014-03-02 20:21:23 +01:00
return &i2cDriver{
busMap: make(map[byte]I2CBus),
ibf: ibf,
2014-03-02 20:21:23 +01:00
}
}
func (i *i2cDriver) Bus(l byte) I2CBus {
i.busMapLock.Lock()
defer i.busMapLock.Unlock()
if b, ok := i.busMap[l]; ok {
return b
2014-03-02 20:21:23 +01:00
}
b := i.ibf(l)
i.busMap[l] = b
2014-03-02 20:21:23 +01:00
return b
}
func (i *i2cDriver) Close() error {
for _, b := range i.busMap {
b.Close()
}
2014-03-23 00:39:13 +01:00
return nil
}