| /**************************************************************************** |
| * arch/arm/src/kl/kl_spi.h |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| * |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. The |
| * ASF licenses this file to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance with the |
| * License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| * License for the specific language governing permissions and limitations |
| * under the License. |
| * |
| ****************************************************************************/ |
| |
| #ifndef __ARCH_ARM_SRC_KL_KL_SPI_H |
| #define __ARCH_ARM_SRC_KL_KL_SPI_H |
| |
| /**************************************************************************** |
| * Included Files |
| ****************************************************************************/ |
| |
| #include <nuttx/config.h> |
| |
| #if defined(CONFIG_KL_SPI0) || defined(CONFIG_KL_SPI1) |
| |
| /**************************************************************************** |
| * Public Data |
| ****************************************************************************/ |
| |
| #ifndef __ASSEMBLY__ |
| |
| #undef EXTERN |
| #if defined(__cplusplus) |
| #define EXTERN extern "C" |
| extern "C" |
| { |
| #else |
| #define EXTERN extern |
| #endif |
| |
| /**************************************************************************** |
| * Public Function Prototypes |
| ****************************************************************************/ |
| |
| struct spi_dev_s; /* Forward reference */ |
| |
| /**************************************************************************** |
| * Name: kl_spibus_initialize |
| * |
| * Description: |
| * Initialize the selected SPI port. |
| * |
| * Input Parameters: |
| * Port number (for hardware that has multiple SPI interfaces) |
| * |
| * Returned Value: |
| * Valid SPI device structure reference on success; a NULL on failure |
| * |
| ****************************************************************************/ |
| |
| struct spi_dev_s *kl_spibus_initialize(int port); |
| |
| /**************************************************************************** |
| * Name: kl_spi[n]select, kl_spi[n]status, and kl_spi[n]cmddata |
| * |
| * Description: |
| * These external functions must be provided by board-specific logic. |
| * They are implementations of the select, status, and cmddata methods of |
| * the SPI interface defined by struct spi_ops_s |
| * (see include/nuttx/spi/spi.h). All other methods including |
| * kl_spibus_initialize()) are provided by common Kinetis logic. |
| * To use this common SPI logic on your board: |
| * |
| * 1. Provide logic in kl_boardinitialize() to configure SPI chip select |
| * pins. |
| * 2. Provide kl_spi[n]select() and kl_spi[n]status() functions in your |
| * board-specific logic. These functions will perform chip selection |
| * and status operations using GPIOs in the way your board is |
| * configured. |
| * 2. If CONFIG_SPI_CMDDATA is defined in the NuttX configuration, provide |
| * kl_spi[n]cmddata() functions in your board-specific logic. These |
| * functions will perform cmd/data selection operations using GPIOs in |
| * the way your board is configured. |
| * 3. Add a call to kl_spibus_initialize() in your low level application |
| * initialization logic |
| * 4. The handle returned by kl_spibus_initialize() may then be used to |
| * bind the SPI driver to higher level logic (e.g., calling |
| * mmcsd_spislotinitialize(), for example, will bind the SPI driver to |
| * the SPI MMC/SD driver). |
| * |
| ****************************************************************************/ |
| |
| #ifdef CONFIG_KL_SPI0 |
| void kl_spi0select(struct spi_dev_s *dev, |
| uint32_t devid, bool selected); |
| uint8_t kl_spi0status(struct spi_dev_s *dev, uint32_t devid); |
| #ifdef CONFIG_SPI_CMDDATA |
| int kl_spi0cmddata(struct spi_dev_s *dev, uint32_t devid, bool cmd); |
| #endif |
| #endif |
| |
| #ifdef CONFIG_KL_SPI1 |
| void kl_spi1select(struct spi_dev_s *dev, |
| uint32_t devid, bool selected); |
| uint8_t kl_spi1status(struct spi_dev_s *dev, uint32_t devid); |
| #ifdef CONFIG_SPI_CMDDATA |
| int kl_spi1cmddata(struct spi_dev_s *dev, uint32_t devid, bool cmd); |
| #endif |
| #endif |
| |
| #if defined(__cplusplus) |
| } |
| #endif |
| #undef EXTERN |
| |
| #endif /* __ASSEMBLY__ */ |
| #endif /* CONFIG_KL_SPI0 || CONFIG_KL_SPI1 */ |
| #endif /* __ARCH_ARM_SRC_KL_KL_SPI_H */ |