]> git.sur5r.net Git - u-boot/blobdiff - include/usb/ulpi.h
x86: Add an accelerated memmove() function
[u-boot] / include / usb / ulpi.h
index 99166c44a08c053386028113952e81acbf3ad24d..747fb0a9fd794d257898f14703581bc6aed13463 100644 (file)
@@ -13,9 +13,7 @@
  * Original Copyrights follow:
  * Copyright (C) 2010 Nokia Corporation
  *
- * This software is distributed under the terms of the GNU General
- * Public License ("GPL") as published by the Free Software Foundation,
- * version 2 of that License.
+ * SPDX-License-Identifier:    GPL-2.0
  */
 
 #ifndef __USB_ULPI_H__
@@ -34,7 +32,7 @@
  * be extended from this structure
  */
 struct ulpi_viewport {
-       u32 viewport_addr;
+       uintptr_t viewport_addr;
        u32 port_num;
 };
 
@@ -125,6 +123,7 @@ int ulpi_reset(struct ulpi_viewport *ulpi_vp);
 /*
  * Write to the ULPI PHY register via the viewport.
  * @reg                - the ULPI register (one of the fields in struct ulpi_regs).
+ *               Due to ULPI design, only 8 lsb of address are used.
  * @value      - the value - only 8 lower bits are used, others ignored.
  *
  * returns 0 on success, ULPI_ERROR on failure.
@@ -134,6 +133,7 @@ int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value);
 /*
  * Read the ULPI PHY register content via the viewport.
  * @reg                - the ULPI register (one of the fields in struct ulpi_regs).
+ *               Due to ULPI design, only 8 lsb of address are used.
  *
  * returns register content on success, ULPI_ERROR on failure.
  */