2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-06-13 22:55:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2014 - Hans de Goede <hdegoede@redhat.com>
|
|
|
|
*/
|
|
|
|
#ifndef _SUNXI_I2C_H_
|
|
|
|
#define _SUNXI_I2C_H_
|
|
|
|
|
|
|
|
#include <asm/arch/cpu.h>
|
|
|
|
|
2015-04-10 23:09:52 +02:00
|
|
|
#ifdef CONFIG_I2C0_ENABLE
|
2022-12-04 10:04:09 -05:00
|
|
|
#define CFG_I2C_MVTWSI_BASE0 SUNXI_TWI0_BASE
|
2015-04-10 23:09:52 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_I2C1_ENABLE
|
2022-12-04 10:04:10 -05:00
|
|
|
#define CFG_I2C_MVTWSI_BASE1 SUNXI_TWI1_BASE
|
2015-04-10 23:09:52 +02:00
|
|
|
#endif
|
2016-01-14 14:06:26 +01:00
|
|
|
#ifdef CONFIG_R_I2C_ENABLE
|
2023-01-10 11:19:45 -05:00
|
|
|
#define CFG_I2C_MVTWSI_BASE2 SUNXI_R_TWI_BASE
|
2016-01-14 14:06:26 +01:00
|
|
|
#endif
|
2015-04-10 23:09:52 +02:00
|
|
|
|
2014-06-13 22:55:49 +02:00
|
|
|
/* This is abp0-clk on sun4i/5i/7i / abp1-clk on sun6i/sun8i which is 24MHz */
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_TCLK 24000000
|
2014-06-13 22:55:49 +02:00
|
|
|
|
|
|
|
#endif
|