mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
df032bf27a
For now, just provide an API to allocate and remove ufs-bsg node. We will use this framework to manage ufs devices by sending UPIU transactions. For the time being, implements an empty bsg_request() - will add some more functionality in coming patches. Nonetheless, we reveal here the protocol we are planning to use: UFS Transport Protocol Transactions. UFS transactions consist of packets called UFS Protocol Information Units (UPIU). There are UPIU’s defined for UFS SCSI commands, responses, data in and data out, task management, utility functions, vendor functions, transaction synchronization and control, and more. By using UPIUs, we get access to the most fine-grained internals of this protocol, and able to communicate with the device in ways, that are sometimes beyond the capacity of the ufs driver. Moreover and as a result, our core structure - ufs_bsg_node has a pretty lean structure: using upiu transactions that contains the outmost detailed info, so we don't really need complex constructs to support it. Signed-off-by: Avri Altman <avri.altman@wdc.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Bart Van Assche <Bart.VanAssche@wdc.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
23 lines
520 B
C
23 lines
520 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2018 Western Digital Corporation
|
|
*/
|
|
#ifndef UFS_BSG_H
|
|
#define UFS_BSG_H
|
|
|
|
#include <linux/bsg-lib.h>
|
|
#include <scsi/scsi.h>
|
|
#include <scsi/scsi_host.h>
|
|
|
|
#include "ufshcd.h"
|
|
#include "ufs.h"
|
|
|
|
#ifdef CONFIG_SCSI_UFS_BSG
|
|
void ufs_bsg_remove(struct ufs_hba *hba);
|
|
int ufs_bsg_probe(struct ufs_hba *hba);
|
|
#else
|
|
static inline void ufs_bsg_remove(struct ufs_hba *hba) {}
|
|
static inline int ufs_bsg_probe(struct ufs_hba *hba) {return 0; }
|
|
#endif
|
|
|
|
#endif /* UFS_BSG_H */
|