summaryrefslogtreecommitdiffstats
path: root/bsps/arm/raspberrypi/include/bsp/i2c.h
blob: 4a8dbbf2ac4d4d3eb94679f580e05a63aa3a5c7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
 * @file i2c.h
 *
 * @ingroup raspberrypi_i2c
 *
 * @brief Raspberry Pi specific I2C definitions.
 */

/*
 *  Copyright (c) 2014-2015 Andre Marques <andre.lousa.marques at gmail.com>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifndef LIBBSP_ARM_RASPBERRYPI_I2C_H
#define LIBBSP_ARM_RASPBERRYPI_I2C_H

#include <dev/i2c/i2c.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/**
 * @name I2C constants.
 *
 * @{
 */

/**
 * @brief BSC controller core clock rate in Hz.
 *
 * This is set to 150 MHz as per the BCM2835 datasheet.
 */
#define BSC_CORE_CLK_HZ 150000000

/**
 * @brief Default bus clock.
 *
 * This sets the bus with a 100 kHz clock speed.
 */
#define DEFAULT_BUS_CLOCK 100000

/** @} */

/**
 * @name  I2C directives.
 *
 * @{
 */

/**
 * @brief Setups the Raspberry Pi GPIO header to activate the BSC I2C bus.
 */
extern void rpi_i2c_init(void);

/**
 * @brief Registers the Raspberry Pi BSC I2C bus with the
 *        Linux I2C User-Space API.
 *
 * @param[in] bus_path Path to the bus device file.
 * @param[in] bus_clock Bus clock in Hz.
 *
 * @retval 0 Bus registered successfully.
 * @retval <0 Could not register the bus. The return value is a negative
 *            errno code.
 */
extern int rpi_i2c_register_bus(
  const char *bus_path,
  uint32_t bus_clock
);

/**
 * @brief Setups the Raspberry Pi BSC I2C bus (located on the GPIO header)
 *        on the "/dev/i2c" device file, using the default bus clock.
 *
 * @retval 0 Bus configured and registered successfully.
 * @retval <0 See @see rpi_i2c_register_bus().
 */
static inline int rpi_setup_i2c_bus(void)
{
  rpi_i2c_init();

  return rpi_i2c_register_bus("/dev/i2c", DEFAULT_BUS_CLOCK);
}

/** @} */

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* LIBBSP_ARM_RASPBERRYPI_I2C_H */