dct.h 334 B

12345678910111213141516
  1. /* SPDX-License-Identifier: BSD-3-Clause */
  2. /*
  3. * Copyright (c) 2020, MIPI Alliance, Inc.
  4. *
  5. * Author: Nicolas Pitre <[email protected]>
  6. *
  7. * Common DCT related stuff
  8. */
  9. #ifndef DCT_H
  10. #define DCT_H
  11. void i3c_hci_dct_get_val(struct i3c_hci *hci, unsigned int dct_idx,
  12. u64 *pid, unsigned int *dcr, unsigned int *bcr);
  13. #endif