1
0
Fork 0
forked from nuttx/nuttx-update
local-nuttx-update/include/nuttx/1wire/1wire.h
Alin Jerpelea cd2fcf5252 include: migrate to SPDX identifier
Most tools used for compliance and SBOM generation use SPDX identifiers
This change brings us a step closer to an easy SBOM generation.

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2024-10-04 08:18:42 +08:00

209 lines
7.5 KiB
C

/****************************************************************************
* include/nuttx/1wire/1wire.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 __INCLUDE_NUTTX_1WIRE_1WIRE_H
#define __INCLUDE_NUTTX_1WIRE_1WIRE_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/* Supported 1-Wire commands */
#define ONEWIRE_CMD_SEARCH 0xf0
#define ONEWIRE_CMD_ALARM_SEARCH 0xec
#define ONEWIRE_CMD_SKIP_ROM 0xcc
#define ONEWIRE_CMD_COPY_SCRATCHPAD 0x48
#define ONEWIRE_CMD_WRITE_SCRATCHPAD 0x4e
#define ONEWIRE_CMD_READ_SCRATCHPAD 0xbe
#define ONEWIRE_CMD_READ_ROM 0x33
#define ONEWIRE_CMD_MATCH_ROM 0x55
#define ONEWIRE_CMD_RESUME 0xa5
/****************************************************************************
* Name: ONEWIRE_RESET
*
* Description:
* Reset pulse and presence detect. Each write operational will be an
* 'atomic' operation in the sense that any other 1-Wire actions will be
* serialized and pend until this write completes.
*
* Input Parameters:
* dev - Device-specific state data
*
* Returned Value:
* 0: success, <0: A negated errno
*
****************************************************************************/
#define ONEWIRE_RESET(d) ((d)->ops->reset(d))
/****************************************************************************
* Name: ONEWIRE_WRITE
*
* Description:
* Send a block of data on 1-Wire. Each write operational will be an
* 'atomic' operation in the sense that any other 1-Wire actions will be
* serialized and pend until this write completes.
*
* Input Parameters:
* dev - Device-specific state data
* buffer - A pointer to the read-only buffer of data to be written to
* device buflen - The number of bytes to send from the buffer
*
* Returned Value:
* 0: success, <0: A negated errno
*
****************************************************************************/
#define ONEWIRE_WRITE(d,b,l) ((d)->ops->write(d,b,l))
/****************************************************************************
* Name: ONEWIRE_READ
*
* Description:
* Receive a block of data from 1-Wire. Each read operational will be an
* 'atomic' operation in the sense that any other 1-Wire actions will be
* serialized and pend until this read completes.
*
* Input Parameters:
* dev - Device-specific state data
* buffer - A pointer to a buffer of data to receive the data from the
* device buflen - The requested number of bytes to be read
*
* Returned Value:
* 0: success, <0: A negated errno
*
****************************************************************************/
#define ONEWIRE_READ(d,b,l) ((d)->ops->read(d,b,l))
/****************************************************************************
* Name: ONEWIRE_EXCHANGE
*
* Description:
* Reset pulse and presence detect, send a block of data and receive a
* block of data from 1-Wire. Each write operational will be an 'atomic'
* operation in the sense that any other 1-Wire actions will be
* serialized and pend until this write completes.
*
* Input Parameters:
* dev - Device-specific state data
* reset - Reset pulse and presence detect
* txbuffer - A pointer to the read-only buffer of data to be written to
* device
* txbuflen - The number of bytes to send from the buffer
* rxbuffer - A pointer to a buffer of data to receive the data from the
* device
* rxbuflen - The requested number of bytes to be read
*
* Returned Value:
* 0: success, <0: A negated errno
*
****************************************************************************/
#define ONEWIRE_EXCHANGE(d,r,tx,tl,rx,rl) ((d)->ops->exchange(d,r,tx,tl,rx,rl))
/****************************************************************************
* Name: ONEWIRE_WRITEBIT
*
* Description:
* Send a single bit on 1-Wire. Each write operational will be an 'atomic'
* operation in the sense that any other 1-Wire actions will be serialized
* and pend until this write completes.
*
* Input Parameters:
* dev - Device-specific state data
* buffer - A pointer to the read-only 1 byte buffer for the bit value
*
* Returned Value:
* 0: success, <0: A negated errno
*
****************************************************************************/
#define ONEWIRE_WRITEBIT(d,b) ((d)->ops->writebit(d,b))
/****************************************************************************
* Name: ONEWIRE_READBIT
*
* Description:
* Sample a single bit from 1-Wire. Each read operational will be an
* 'atomic' operation in the sense that any other 1-Wire actions will be
* serialized and pend until this read completes.
*
* Input Parameters:
* dev - Device-specific state data
* buffer - A pointer to a 1 byte buffer for the bit value
*
* Returned Value:
* 0: success, <0: A negated errno
*
****************************************************************************/
#define ONEWIRE_READBIT(d,b) ((d)->ops->readbit(d,b))
/****************************************************************************
* Public Types
****************************************************************************/
/* The 1-Wire vtable */
struct onewire_dev_s;
struct onewire_ops_s
{
CODE int (*reset)(FAR struct onewire_dev_s *dev);
CODE int (*write)(FAR struct onewire_dev_s *dev, FAR const uint8_t *buffer,
int buflen);
CODE int (*read)(FAR struct onewire_dev_s *dev, FAR uint8_t *buffer,
int buflen);
CODE int (*exchange)(FAR struct onewire_dev_s *dev, bool reset,
FAR const uint8_t *txbuffer, int txbuflen,
FAR uint8_t *rxbuffer, int rxbuflen);
CODE int (*writebit)(FAR struct onewire_dev_s *dev,
FAR const uint8_t *bit);
CODE int (*readbit)(FAR struct onewire_dev_s *dev, FAR uint8_t *bit);
};
/* 1-Wire private data. This structure only defines the initial fields of the
* structure visible to the 1-Wire client. The specific implementation may
* add additional, device specific fields after the vtable.
*/
struct onewire_dev_s
{
FAR const struct onewire_ops_s *ops; /* 1-Wire vtable */
};
/****************************************************************************
* Public Functions Definitions
****************************************************************************/
#endif /* __INCLUDE_NUTTX_1WIRE_1WIRE_H */