11.2Sthorpej$NetBSD: spi_calls,v 1.2 2025/09/14 16:00:04 thorpej Exp $
21.1Sthorpej
31.1Sthorpej/*-
41.1Sthorpej * Copyright (c) 2021 The NetBSD Foundation, Inc.
51.1Sthorpej * All rights reserved.
61.1Sthorpej *
71.1Sthorpej * This code is derived from software contributed to The NetBSD Foundation
81.1Sthorpej * by Jason R. Thorpe.
91.1Sthorpej *
101.1Sthorpej * Redistribution and use in source and binary forms, with or without
111.1Sthorpej * modification, are permitted provided that the following conditions
121.1Sthorpej * are met:
131.1Sthorpej * 1. Redistributions of source code must retain the above copyright
141.1Sthorpej *    notice, this list of conditions and the following disclaimer.
151.1Sthorpej * 2. Redistributions in binary form must reproduce the above copyright
161.1Sthorpej *    notice, this list of conditions and the following disclaimer in the
171.1Sthorpej *    documentation and/or other materials provided with the distribution.
181.1Sthorpej *
191.1Sthorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
201.1Sthorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
211.1Sthorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
221.1Sthorpej * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
231.1Sthorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
241.1Sthorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
251.1Sthorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
261.1Sthorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
271.1Sthorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
281.1Sthorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
291.1Sthorpej * POSSIBILITY OF SUCH DAMAGE.
301.1Sthorpej */
311.1Sthorpej
321.1Sthorpej/*
331.1Sthorpej * Device calls used by the SPI subsystem.
341.1Sthorpej */
351.1Sthorpej
361.1Sthorpejsubsystem spi;
371.1Sthorpej
381.1Sthorpej#include <dev/spi/spivar.h>
391.1Sthorpej
401.1Sthorpej/*
411.1Sthorpej * spi-enumerate-devices
421.1Sthorpej *
431.1Sthorpej * Enumerates the devices connected to the SPI bus, filling out
441.1Sthorpej * the spi_attach_args and invoking the callback for each one.
451.1Sthorpej * The caller provides the storage for the spi_attach_args.  Because
461.1Sthorpej * the chip select is not exposed to SPI drivers in spi_attach_args,
471.1Sthorpej * the chip select provided by the enumeration is captured in the
481.1Sthorpej * arguments passed to the callback.
491.1Sthorpej *
501.1Sthorpej * If the callback returns true, then enumeration continues.  If
511.1Sthorpej * the callback returns false, enumeration is stopped.
521.1Sthorpej *
531.1Sthorpej * Call returns 0 if successful, or an error code upon failure:
541.1Sthorpej *
551.1Sthorpej * ENOTSUP	The device handle implementation for the
561.1Sthorpej *		SPI bus does not support this device call.
571.1Sthorpej */
581.1Sthorpejspi-enumerate-devices {
591.1Sthorpej	struct spi_attach_args *sa;	/* IN */
601.1Sthorpej	bool (*callback)(device_t, struct spi_enumerate_devices_args *);
611.1Sthorpej	int chip_select;		/* OUT */
621.1Sthorpej};
631.2Sthorpej
641.2Sthorpej/*
651.2Sthorpej * spi-get-transfer-mode
661.2Sthorpej *
671.2Sthorpej * Gets the transfer mode associated with the specified device handle
681.2Sthorpej * from the device tree.
691.2Sthorpej *
701.2Sthorpej * Call returns 0 if successful, or an error code upon failure:
711.2Sthorpej *
721.2Sthorpej * ENOTSUP	The device handle implementation for the
731.2Sthorpej *		SPI bus does not support this device call.
741.2Sthorpej *
751.2Sthorpej * EINVAL	The transfer mode information associated with the
761.2Sthorpej *		device handle is invalid.
771.2Sthorpej */
781.2Sthorpejspi-get-transfer-mode {
791.2Sthorpej	unsigned int mode;		/* OUT */
801.2Sthorpej	unsigned int max_frequency;	/* OUT */
811.2Sthorpej	unsigned int flags;		/* OUT */
821.2Sthorpej	unsigned int cs_setup_delay_ns;	/* OUT */
831.2Sthorpej	unsigned int cs_hold_delay_ns;	/* OUT */
841.2Sthorpej	unsigned int cs_inact_delay_ns;	/* OUT */
851.2Sthorpej	unsigned int rx_bus_width;	/* OUT */
861.2Sthorpej	unsigned int rx_delay_us;	/* OUT */
871.2Sthorpej	unsigned int rx_sample_delay_ns;/* OUT */
881.2Sthorpej	unsigned int tx_bus_width;	/* OUT */
891.2Sthorpej	unsigned int tx_delay_us;	/* OUT */
901.2Sthorpej};
91