Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751990AbdFUTiL (ORCPT ); Wed, 21 Jun 2017 15:38:11 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:38276 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751098AbdFUTiJ (ORCPT ); Wed, 21 Jun 2017 15:38:09 -0400 From: Eddie James To: linux-kernel@vger.kernel.org Cc: gregkh@linuxfoundation.org, devicetree@vger.kernel.org, robh+dt@kernel.org, mark.rutland@arm.com, bradleyb@fuzziesquirrel.com, jk@ozlabs.org, cbostic@linux.vnet.ibm.com, joel@jms.id.au, andrew@aj.id.au, eajames@linux.vnet.ibm.com, "Edward A. James" Subject: [PATCH linux 0/4] drivers/fsi: Add SBEFIFO and OCC drivers Date: Wed, 21 Jun 2017 14:37:57 -0500 X-Mailer: git-send-email 1.8.3.1 X-TM-AS-GCONF: 00 x-cbid: 17062119-0004-0000-0000-0000126BA218 X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007267; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000214; SDB=6.00877940; UDB=6.00437402; IPR=6.00658080; BA=6.00005434; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00015912; XFM=3.00000015; UTC=2017-06-21 19:38:07 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17062119-0005-0000-0000-00007FDCE2E4 Message-Id: <1498073881-3207-1-git-send-email-eajames@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-06-21_04:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=1 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1703280000 definitions=main-1706210326 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1482 Lines: 33 From: "Edward A. James" This series adds two FSI-based device drivers. The OCC driver is dependent on the SBEFIFO driver, as a user of it's in-kernel API. The in-kernel API provided by the OCC driver will be used by a hwmon driver (to be sent to the lkml soon). I previously sent up the first patch in the series independently, but decided to split into the base driver and the addition of the in-kernel API, as it's a little easier to digest. So, no v2, but I did include some fixes suggested by Greg. Edward A. James (4): drivers/fsi: Add SBEFIFO FSI client device driver drivers/fsi/sbefifo: Add in-kernel API drivers/fsi: Add On-Chip Controller (OCC) driver drivers/fsi/occ: Add in-kernel API .../devicetree/bindings/fsi/ibm,p9-occ.txt | 23 + drivers/fsi/Kconfig | 17 + drivers/fsi/Makefile | 2 + drivers/fsi/fsi-sbefifo.c | 921 +++++++++++++++++++++ drivers/fsi/occ.c | 790 ++++++++++++++++++ include/linux/fsi-sbefifo.h | 30 + include/linux/occ.h | 27 + 7 files changed, 1810 insertions(+) create mode 100644 Documentation/devicetree/bindings/fsi/ibm,p9-occ.txt create mode 100644 drivers/fsi/fsi-sbefifo.c create mode 100644 drivers/fsi/occ.c create mode 100644 include/linux/fsi-sbefifo.h create mode 100644 include/linux/occ.h -- 1.8.3.1