From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751171AbcAQPt3 (ORCPT ); Sun, 17 Jan 2016 10:49:29 -0500 Received: from ring0.de ([5.45.101.7]:58870 "EHLO ring0.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750834AbcAQPt0 (ORCPT ); Sun, 17 Jan 2016 10:49:26 -0500 X-Spam-Report: =?ISO-8859-1?Q? * -1.0 ALL_TRUSTED Nachricht wurde nur =fcber vertrauensw=fcrdige Rechner * weitergeleitet * 0.0 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail * domains are different * -1.9 BAYES_00 BODY: Spamwahrscheinlichkeit nach Bayes-Test: 0-1% * [score: 0.0000]?= X-Spam-Relay-Country: From: Sebastian Reichel To: Sebastian Reichel , Tony Lindgren , =?UTF-8?q?Beno=C3=AEt=20Cousson?= , Paul Walmsley , Aaro Koskinen Cc: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , linux-omap@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/5] Nokia N950 modem support Date: Sun, 17 Jan 2016 16:49:04 +0100 Message-Id: <1453045749-22642-1-git-send-email-sre@kernel.org> X-Mailer: git-send-email 2.7.0.rc3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, This patchset adds support for the N950 modem. Afterwards it can be used with ofono in the same way, that the N900's modem can be used [0]. In addition to the kernel patchset, ofono must be modified slightly, though. The cbs interface from the N950 modem seems to be broken resulting in modem reset. The below ofono patch is enough to get it running for the N950. [0] https://lkml.org/lkml/2014/5/10/167 -- Sebastian diff --git a/plugins/n900.c b/plugins/n900.c index 44e2e75df3d9..1454d010cb2c 100644 --- a/plugins/n900.c +++ b/plugins/n900.c @@ -507,7 +507,7 @@ static void n900_post_online(struct ofono_modem *modem) ofono_netreg_create(modem, 0, "isimodem", isi->modem); ofono_sms_create(modem, 0, "isimodem", isi->modem); - ofono_cbs_create(modem, 0, "isimodem", isi->modem); + //ofono_cbs_create(modem, 0, "isimodem", isi->modem); ofono_ussd_create(modem, 0, "isimodem", isi->modem); ofono_call_settings_create(modem, 0, "isimodem", isi->modem); ofono_call_barring_create(modem, 0, "isimodem", isi->modem); --- Sebastian Reichel (5): ARM: OMAP2+: hwmod data: Add SSI data for omap36xx ARM: dts: OMAP3-N950-N9: Enable SSI module HSI: nokia-modem: add n950 and n9 support HSI: ssi-protocol: Use handshake logic from n950 ARM: dts: OMAP3-N950-N9: Enable modem .../devicetree/bindings/hsi/nokia-modem.txt | 12 ++-- arch/arm/boot/dts/omap3-n9.dts | 4 ++ arch/arm/boot/dts/omap3-n950-n9.dtsi | 64 ++++++++++++++++++++++ arch/arm/boot/dts/omap3-n950.dts | 4 ++ arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 13 +++-- drivers/hsi/clients/nokia-modem.c | 2 + drivers/hsi/clients/ssi_protocol.c | 16 ++---- 7 files changed, 93 insertions(+), 22 deletions(-) -- 2.7.0.rc3