29 Jan, 2016

1 commit

  • The Nokia N950 and Nokia N9 also have a SSI connected
    modem, which use the same protocols as the Nokia N900,
    but with increased link speed (96000 kbps instead of
    55000 kbps) and with less GPIOs.

    Since it's unclear, if the N950 and the N9 use exactly
    the same modem, each of them gets their own compatible
    string.

    Acked-by: Rob Herring
    Tested-by: Aaro Koskinen
    Signed-off-by: Sebastian Reichel

    Sebastian Reichel
     

23 Jun, 2015

2 commits


01 Apr, 2015

1 commit


01 Mar, 2015

1 commit

  • Return a negative error code on failure.

    A simplified version of the semantic match that finds this problem is as
    follows: (http://coccinelle.lip6.fr/)

    //
    @@
    identifier ret; expression e1,e2;
    @@
    (
    if (\(ret < 0\|ret != 0\))
    { ... return ret; }
    |
    ret = 0
    )
    ... when != ret = e1
    when != &ret
    *if(...)
    {
    ... when != ret = e2
    when forall
    return ret;
    }
    //

    Signed-off-by: Julia Lawall
    Signed-off-by: Sebastian Reichel

    Julia Lawall
     

05 Jan, 2015

1 commit


15 Nov, 2014

2 commits


03 Oct, 2014

1 commit


16 May, 2014

1 commit

  • The Nokia N900's modem is connected via Synchronous Serial Interface (SSI),
    which is a legacy version of MIPI's High-speed Synchronous Serial Interface
    (HSI).

    The handles the GPIOs for enabling and resetting the modem and instanciates
    ssi-protocol for data exchange. It does not yet support exchanging voice data
    with the modem.

    Signed-off-by: Sebastian Reichel
    Reviewed-by: Pavel Machek
    Tested-By: Ivaylo Dimitrov

    Sebastian Reichel