summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mpc55xxevb/i2c/i2c_init.c
blob: 49fd8cad9e816bc52fbdb9a4792086e6df0feebb (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
/*===============================================================*\
| Project: RTEMS support for GWLCFM                               |
+-----------------------------------------------------------------+
|                    Copyright (c) 2010                           |
|                    Embedded Brains GmbH                         |
|                    Obere Lagerstr. 30                           |
|                    D-82178 Puchheim                             |
|                    Germany                                      |
|                    rtems@embedded-brains.de                     |
+-----------------------------------------------------------------+
| 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.                           |
|                                                                 |
+-----------------------------------------------------------------+
| this file contains the low level MPC5516 I2C driver parameters  |
\*===============================================================*/

#include <libchip/i2c-2b-eeprom.h>

#include <bsp.h>
#include <bsp/irq.h>
#include <mpc83xx/mpc83xx_i2cdrv.h>

#if MPC55XX_CHIP_FAMILY == 551
  static void i2c_probe(mpc83xx_i2c_softc_t *self)
  {
    self->base_frq = bsp_clock_speed;
  }

  static mpc83xx_i2c_desc_t mpc55xx_i2c_bus = {
    .bus_desc = {
      .ops = &mpc83xx_i2c_ops,
      .size = sizeof(mpc55xx_i2c_bus),
    },
    .softc = {
      .reg_ptr = (m83xxI2CRegisters_t *) 0xfff88000,
      .initialized = FALSE,
      .irq_number = MPC55XX_IRQ_I2C(0),
      .base_frq = 0,
      .probe = i2c_probe
    }
  };

  rtems_status_code bsp_register_i2c(void)
  {
    int rv = 0;
    int busno = 0;

    rtems_libi2c_initialize ();

    busno = rtems_libi2c_register_bus(
      "/dev/i2c1",
      &mpc55xx_i2c_bus.bus_desc
    );
    if (busno < 0) {
      return RTEMS_IO_ERROR;
    }

    #ifdef RTEMS_BSP_I2C_EEPROM_DEVICE_NAME
      rv = rtems_libi2c_register_drv(
        RTEMS_BSP_I2C_EEPROM_DEVICE_NAME,
        i2c_2b_eeprom_driver_descriptor,
        busno,
        0x51
      );
      if (rv < 0) {
        return RTEMS_IO_ERROR;
      }
    #endif

    return RTEMS_SUCCESSFUL;
  }
#endif