]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - arch/sandbox/include/asm/test.h
dm: test: Add tests for the clk uclass
[karo-tx-uboot.git] / arch / sandbox / include / asm / test.h
index 06e73012680e869fdca2f90c1682a4145d784518..28e9c09c064288acc6e0c43fd0b8f8643389b04e 100644 (file)
 #define SANDBOX_PCI_CLASS_CODE         PCI_CLASS_CODE_COMM
 #define SANDBOX_PCI_CLASS_SUB_CODE     PCI_CLASS_SUB_CODE_COMM_SERIAL
 
+#define SANDBOX_CLK_RATE               32768
+
+enum {
+       PERIPH_ID_FIRST = 0,
+       PERIPH_ID_SPI = PERIPH_ID_FIRST,
+       PERIPH_ID_I2C,
+       PERIPH_ID_PCI,
+
+       PERIPH_ID_COUNT,
+};
+
 /**
  * sandbox_i2c_set_test_mode() - set test mode for running unit tests
  *
@@ -46,4 +57,25 @@ void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
  */
 void sandbox_timer_add_offset(unsigned long offset);
 
+/**
+ * sandbox_i2c_rtc_set_offset() - set the time offset from system/base time
+ *
+ * @dev:               RTC device to adjust
+ * @use_system_time:   true to use system time, false to use @base_time
+ * @offset:            RTC offset from current system/base time (-1 for no
+ *                     change)
+ * @return old value of RTC offset
+ */
+long sandbox_i2c_rtc_set_offset(struct udevice *dev, bool use_system_time,
+                               int offset);
+
+/**
+ * sandbox_i2c_rtc_get_set_base_time() - get and set the base time
+ *
+ * @dev:               RTC device to adjust
+ * @base_time:         New base system time (set to -1 for no change)
+ * @return old base time
+ */
+long sandbox_i2c_rtc_get_set_base_time(struct udevice *dev, long base_time);
+
 #endif