diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-15 17:49:46 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-15 17:49:46 -0700 |
| commit | bbe05e543bfeab1c37127f38b7e575db916fbc6c (patch) | |
| tree | 30c8f1dc6465e6a5b31f51f4468cd7e7114dcde3 /drivers/i2c/busses/i2c-stm32.h | |
| parent | 9db59599ae502b38b27cff6462273f84acd59927 (diff) | |
| parent | aeb068c57214858b638d5ee627bb4a831f98771e (diff) | |
| download | blackbird-op-linux-bbe05e543bfeab1c37127f38b7e575db916fbc6c.tar.gz blackbird-op-linux-bbe05e543bfeab1c37127f38b7e575db916fbc6c.zip | |
Merge branch 'i2c/for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
Pull more i2c updates from Wolfram Sang:
"I2C has two more new drivers: Altera FPGA and STM32F7"
* 'i2c/for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
i2c: i2c-stm32f7: add driver
i2c: i2c-stm32f4: use generic definition of speed enum
dt-bindings: i2c-stm32: Document the STM32F7 I2C bindings
i2c: altera: Add Altera I2C Controller driver
dt-bindings: i2c: Add Altera I2C Controller
Diffstat (limited to 'drivers/i2c/busses/i2c-stm32.h')
| -rw-r--r-- | drivers/i2c/busses/i2c-stm32.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-stm32.h b/drivers/i2c/busses/i2c-stm32.h new file mode 100644 index 000000000000..dab51761f8c5 --- /dev/null +++ b/drivers/i2c/busses/i2c-stm32.h @@ -0,0 +1,20 @@ +/* + * i2c-stm32.h + * + * Copyright (C) M'boumba Cedric Madianga 2017 + * Author: M'boumba Cedric Madianga <cedric.madianga@gmail.com> + * + * License terms: GNU General Public License (GPL), version 2 + */ + +#ifndef _I2C_STM32_H +#define _I2C_STM32_H + +enum stm32_i2c_speed { + STM32_I2C_SPEED_STANDARD, /* 100 kHz */ + STM32_I2C_SPEED_FAST, /* 400 kHz */ + STM32_I2C_SPEED_FAST_PLUS, /* 1 MHz */ + STM32_I2C_SPEED_END, +}; + +#endif /* _I2C_STM32_H */ |

