summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-03-16rpi3: config_64bit: boot from u-boot instead of splsubmit/tizen_5.5_wearable_hotfix/20201026.184306submit/tizen_5.5/20200317.014351accepted/tizen/5.5/unified/wearable/hotfix/20201027.102211accepted/tizen/5.5/unified/20200318.225602tizen_5.5_wearable_hotfixtizen_5.5accepted/tizen_5.5_unified_wearable_hotfixaccepted/tizen_5.5_unifiedSeung-Woo Kim1-3/+3
Now, Tizen does not support OPTEE by default, so u-boot-spl is not required. Boot from u-boot instead of u-boot-spl. Change-Id: Iadaee5290ede214b4f85487eea8e9151f9ea98f9 Ref: https://bugs.tizen.org/browse/TRE-2318 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2020-03-16ARM64: tizen_bcmrpi3_defconfig: Disable OPTEESeung-Woo Kim1-1/+0
Now, Tizen does not support OPTEE by default. Disable OPTEE config options. Change-Id: I424d38f42ad0e3199bd84517fb477dc212785be8 Ref: https://bugs.tizen.org/browse/TRE-2318 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2020-03-16ARM: dts: bcm2710-rpi-3: Change build macro for opteeSeung-Woo Kim3-3/+5
Now, Tizen does not support optee by default. Change build macro for optee related nodes in default case. Change-Id: Ib925414ba6fd96099ca984cc8b665263812b9538 Ref: https://bugs.tizen.org/browse/TRE-2318 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-08-28ARM: configs: tizen_bcm2709_defconfig: Enable NETFILTER_XT_MATCH_LIMITtizen_5.5.m2_releasesubmit/tizen_5.5_mobile_hotfix/20201026.185106submit/tizen_5.5/20191031.000010submit/tizen/20190902.001331submit/tizen/20190829.050836accepted/tizen/unified/20190902.055156accepted/tizen/5.5/unified/mobile/hotfix/20201027.062007accepted/tizen/5.5/unified/20191031.004342tizen_5.5_tvtizen_5.5_mobile_hotfixaccepted/tizen_5.5_unified_mobile_hotfixSeung-Woo Kim1-0/+1
From Tizen network security, NETFILTER_XT_MATCH_LIMIT is used for ipv6. So enable NETFILTER_XT_MATCH_LIMIT config option. Change-Id: Ife75ee0a766c64fb38a0e261f41a45678ab49bd4 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-08-28ARM64: configs: tizen_bcmrpi3_defconfig: Enable NETFILTER_XT_MATCH_LIMITSeung-Woo Kim1-0/+1
From Tizen network security, NETFILTER_XT_MATCH_LIMIT is used for ipv6. So enable NETFILTER_XT_MATCH_LIMIT config option. Change-Id: Ieeba2c67481e299fb3d91ee4378f8b2a2baffc7b Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-31ARM: configs: tizen_bcm2709_defconfig: Enable NETFILTER_XT_MATCH_OWNER configsubmit/tizen/20190801.074211accepted/tizen/unified/20190802.111347Seung-Woo Kim1-0/+1
Enable the NETFILTER_XT_MATCH_OWNER config option to use xt_owner supplementary groups. Change-Id: I10a8277e2c42cae8cd02eb892e2dac5124681a71 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-31ARM64: configs: tizen_bcmrpi3_defconfig: Enable NETFILTER_XT_MATCH_OWNER configSeung-Woo Kim1-0/+1
Enable the NETFILTER_XT_MATCH_OWNER config option to use xt_owner supplementary groups. Change-Id: I1baf6d78dc7c28d7235bb1cce9b6132b2fba7148 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-25ARM: dts: bcm2710-rpi-3-b-plus: remove duplicated uart0_ctsrts_gpio30 nodeSeung-Woo Kim1-6/+0
The commit ad3b011329c8 ("ARM: dts: bcm2710-rpi-3-b-plus: Add cts pin setting for bluetooth uart") introduced duplicated dt node, uart0_ctsrts_gpio30, because it is already defined in bcm283x.dtsi. Remove the duplicated dt node. Change-Id: Ic9a39b88662198f30b585f48f2f0e896b62ab8f3 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-25Revert "Bluetooth : Set the optimized operation speed for BCM Uart"DoHyun Pyun1-3/+0
This reverts commit 5cc55680fc9fe5bfd7590905c56e55dfa4aefbd5. The proper operation speed of the RPI3 Uart is different for each HW revision. So we will set the value in the user space's firmware downloading tool after checking the HW version. Change-Id: I95d80f3598015a27fbdc1375b3d6c089be67b8d0 Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
2019-07-23ARM: dts: bcm2710-rpi-3-b-plus: Add cts pin setting for bluetooth uartsubmit/tizen/20190724.095831accepted/tizen/unified/20190725.042923Seung-Woo Kim1-1/+7
There is missing cts pin for uart0 used by bluetooth. Add the cts pin setting as like bcm2837-rpi-3-b-plus. Change-Id: Iefdf80ec0d523b85f7a6e579e1544a67b9139212 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-23tty: amba-pl011: Make TX optimisation conditionalPhil Elwell1-1/+6
pl011_tx_chars takes a "from_irq" parameter to reduce the number of register accesses. When from_irq is true the function assumes that the FIFO is half empty and writes up to half a FIFO's worth of bytes without polling the FIFO status register, the reasoning being that the function is being called as a result of the TX interrupt being raised. This logic would work were it not for the fact that pl011_rx_chars, called from pl011_int before pl011_tx_chars, releases the spinlock before calling tty_flip_buffer_push. A user thread writing to the UART claims the spinlock and ultimately calls pl011_tx_chars with from_irq set to false. This reverts to the older logic that polls the FIFO status register before sending every byte. If this happen on an SMP system during the section of the IRQ handler where the spinlock has been released, then by the time the TX interrupt handler is called, the FIFO may already be full, and any further writes are likely to be lost. The fix involves adding a per-port flag that is true iff running from within the interrupt handler and the spinlock has not yet been released. This flag is then used as the value for the from_irq parameter of pl011_tx_chars, causing polling to be used in the unsafe case. Fixes: 1e84d22322ce ("serial/amba-pl011: Refactor and simplify TX FIFO handling") Signed-off-by: Phil Elwell <phil@raspberrypi.org> [sw0312.kim: cherry-pick from rpi-4.19.y to reduce bt reassembly issue] Reference: https://github.com/raspberrypi/firmware/issues/1150 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: Ia56b9fffb8805ca02d04ed9c9b810988e1b56642
2019-07-23packaging: Add _wrong_version_format_terminate_build macroSeung-Woo Kim1-0/+3
Newer version of rpmbuild rejects double dash, "-", in version. To support the style, add _worng_version_format_terminate_build as 0. Change-Id: Ieed243fb4ad7059b83d5328f0c38b15e4c74dc0e Reference: https://github.com/rpm-software-management/rpm/commit/5e94633660d0e2b97 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-22packaging: remove macro in package Namesubmit/tizen/20190722.101515accepted/tizen/unified/20190723.053546Seung-Woo Kim1-1/+1
Some build system cannot recognize macro in package Name. Remove the macro by replacing with same string. Change-Id: I34c853be82476db3b32d49aadc77809a2f493436 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-17Bluetooth : Set the optimized operation speed for BCM Uartsubmit/tizen/20190717.094806accepted/tizen/unified/20190717.220500DoHyun Pyun1-0/+3
When ACL data packet transfers via Uart on the RPI3 board, the packet loss or overflow issue is occured. After adjusting the operation speed value, we can reduce these problems. Change-Id: Id072102e173e0338c4ae3cb7a1a541fbf7f8066e Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
2019-07-17Bluetooth: fix wrong indent in __hci_req_update_{scan/adv}_rsp_data()Seung-Woo Kim1-20/+20
The commit ac160e08af69 ("Bluetooth: Add Advertising Packet Configuration") introduces wrong indent which causes build warning for gcc-7. Fix the wrong indent. Change-Id: Ia0bde8a8f9660ccf8fa312e3c3ec6c8cb76863f1 Fixes: ac160e08af69 ("Bluetooth: Add Advertising Packet Configuration") Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-12ARM64: configs: tizen_bcmrpi3_defconfig: Enable BCM Uart protocolsubmit/tizen/20190712.062853accepted/tizen/unified/20190714.220712Seung-Woo Kim1-1/+2
RPI3 target uses the BCM BT chip of the Uart type. To avoid the reassembly failed problem, we should enable BCM Uart protocol and need to use it. It is enabled with CONFIG_SERIAL_DEV_BUS. Change-Id: I960ddb6f6b3cb64261ebcdc750771943697948ae Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-12ARM: configs: tizen_bcm2709_defconfig: Enable BCM Uart protocolDoHyun Pyun1-1/+2
RPI3 target uses the BCM BT chip of the Uart type. To avoid the reassembly failed problem, we should enable BCM Uart protocol and need to use it. It is enabled with CONFIG_SERIAL_DEV_BUS. Change-Id: I3cf97b032e1ce92898f2329fae3691d4d5870726 Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com> [sw0312.kim: adjust defconfig with savedefconfig and update commit-msg] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2019-07-05ARM: dts: bcm27xx: Fix to of_graph from bridge node for touchscreensubmit/tizen/20190708.061153accepted/tizen/unified/20190708.114147Hoegeun Kwon5-30/+13
Beginning with kernel v4.15, the i2c management of the touchscreen panel driver has been changed to use of_graph from brdge node. So change to of_graph and remove the unnecessary nodes. Change-Id: I6ef786ed472ef2b350eb8683568d0ecb407182c0 Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
2019-07-05drm/vc4: Fix change to find_panel in the dsi_attach funcHoegeun Kwon1-27/+30
There is a problem that crtc does not bind while continuously requesting EPROBE_DEFER, if dsi_bind does not successfully bind. We need to change the part of find_panel in bind to dsi_attach function. Change-Id: Ifce518f047f496079eb8fbe112dabbd9bc7488bb Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
2019-07-04netfilter: xt_owner: bail out with EINVAL in case of unsupported flagssubmit/tizen/20190705.061049accepted/tizen/unified/20190705.110629Pablo Neira Ayuso2-0/+8
Reject flags that are not supported with EINVAL. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> [sw0312.kim: backport from mainline to apply supplementary groups on netfilter] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: Id867ca48290a8e6627ad7d1b1f159669fc5c44a1
2019-07-04netfilter: xt_owner: Add supplementary groups optionLukasz Pawelczyk2-6/+24
The XT_OWNER_SUPPL_GROUPS flag causes GIDs specified with XT_OWNER_GID to be also checked in the supplementary groups of a process. f_cred->group_info cannot be modified during its lifetime and f_cred holds a reference to it so it's safe to use. Signed-off-by: Lukasz Pawelczyk <l.pawelczyk@samsung.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> [sw0312.kim: backport from mainline to apply supplementary groups on netfilter] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: I7a21fc112cde77ae708b84d4b48c8aee339a7642
2019-07-04ARM: configs: tizen_bcm2709_defconfig: Remove unused modulesHoegeun Kwon1-1/+0
Remove unused modules from the backlight. Change-Id: I1fd5267690efd4a7bd5137b64dfadba5111dc2dd Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
2019-07-04Bluetooth: Fix the potential crash issueDoHyun Pyun1-2/+2
There is a logic error in the event function. We should check the callback function's parameter before calling. Change-Id: I06a4a8c50317e5ec4ae8fe35e4b788105e090196 Fixes: bde01c80dd51 ("Bluetooth: Set le data length command and event") Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
2019-07-03tools: Add build script for ARM kernel of rpi3Hoegeun Kwon1-0/+26
Add build script for ARM kernel of rpi3. Change-Id: I35a7dd2148350f775d3d96a478dac66190079d68 Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
2019-07-03Revert "ARM: dts: bcm27xx: Fix to of_graph from bridge node for panel"submit/tizen/20190703.103920accepted/tizen/unified/20190704.040506Hoegeun Kwon5-13/+30
This reverts commit b2f6ad21a0bab8e59926666f717a4f6c53066a2d. There is a problem with the hdmi and revert the patch. Change-Id: Ia69d10c067ff69d192162b0598f43028c4a05f9b Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
2019-07-02ARM: dts: bcm27xx: Fix to of_graph from bridge node for panelsubmit/tizen/20190702.072015accepted/tizen/unified/20190702.114802Hoegeun Kwon5-30/+13
Beginning with kernel v4.15, the i2c management of the touchscreen panel driver has been changed to use of_graph from brdge node. So change to of_graph and remove the unnecessary nodes. Change-Id: Ibf131aebd964360874ebe2f3792f0912f6e8988d Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
2019-06-28Bluetooth: Set le data length command and eventsubmit/tizen/20190701.041905accepted/tizen/unified/20190701.111735Sudha Bheemanna5-0/+191
Sets the data length for the le data packet with in the advised limits. MGMT command and event are added to handle the setting of data length. Change-Id: Ia5c2167743cc9a29190e5631973e9d52d41caa1d Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Read host suggested default le data lengthSudha Bheemanna4-0/+100
This patch adds MGMT command and code for supporting reading default le data length value set at the controller. Change-Id: I2b81982dc26ed5af4a8f8a3d3913db5d64625260 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Write host suggested default le data lengthSudha Bheemanna4-0/+108
This patch adds MGMT command and code for supporting write default le data length command to the controller. Change-Id: I3d2c8b622b7913a3ed542342e3ba8076c30dc279 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Read LE Max data length commandSudha Bheemanna4-0/+99
This patch adds the MGMT command and code to support reading the maximum data length supported command for LE. Change-Id: I4dc0041f2070de2ccb6a4164c8823612863c941e Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Fix IPSP connection callback event issue.h.sandeep1-0/+30
This patch fixes the IPSP connection callback event issue between kernel and bluez layer. Change-Id: Ia4d625aa8a6dbc9da89a7d9f12308af9c90d0594 Signed-off-by: h.sandeep <h.sandeep@samsung.com> Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: IPSP Connect/Disconnect apisSudha Bheemanna5-0/+191
This patch adds MGMT code to support IPSP connect and disconnect apis and handle connection state changed event. Change-Id: I1c41ec4f38cf9a108e443def3bc23c1b964e2985 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Add support to enable/disable IPSPSudha Bheemanna4-0/+86
This patch supports MGMT commands and code to enable or disable IPSP 6LowPan features. Change-Id: Ia866ecfa517c7d7e4320f17d94d80dfeb9261e59 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Fix issue in the Set LE privacy function.Sudha Bheemanna1-0/+5
This patch fixes not to check the hdev power before setting LE Privacy. Change-Id: I344ea13b1d90527e3e7554ec616cdc640b85159c Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Store the key if auth type is P192Sudha Bheemanna1-0/+8
This patch allows to store the key after authentication if auth type is "HCI_LK_AUTH_COMBINATION_P192" Change-Id: Ie44dbe7dfec361edab61aceaf9b2ca4057b88fa5 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Cancel the Sniff timerSudha Bheemanna1-0/+9
This patch adds code to cancel the sniff timer. Change-Id: I756d3b08acf6462044d1fb204064fe12ce1238c1 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Enable sniff mode for incoming connectionSudha Bheemanna1-0/+5
Add provision to set the link poilicy to enable sniff mode for incoming connection. Change-Id: Ifff9e9f0838f26a6c96d81f4cbaae43429aa231f Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Modify fast connectable type.Sudha Bheemanna1-0/+9
This patch modifies the fast connectable function to just set the type. Change-Id: I0cce96f85d823f9798ae7f147c4e33ce7b18e0e3 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Send Authentication Request command on pairing failureSudha Bheemanna1-0/+18
This patch allows to send HCI_OP_AUTH_REQUESTED command to the remote device if pairing failure happens because of pin or key missing error. Change-Id: I9c28394dc06b22fd5fe9e58ac0b7d728c086bde4 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Enable inquiry and page scanSudha Bheemanna1-0/+16
This patch enables the inquiry and page scan after ACL disconnection with one device and if there are no other devices connected. Change-Id: Ifb28be7d23f237d35112b2e0739ed55169baacf7 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Change authentication requirement.Sudha Bheemanna1-0/+8
This patch updates the authentication requirement to general MITM if local and remote device IO capabilities are not NO_INPUT_NO_OUTPUT. Change-Id: Ie3955c3f8287418e74af20d40bdf30d0f1963e31 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Set link Supervision timeout for a connectionSudha Bheemanna6-1/+74
This patch allows to set the supervision timeout for a connection if the device role is master. Change-Id: I7897167ec07803f3059f2ab4d3314b0b7a951533 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Set filter policy for LE connectionSudha Bheemanna3-0/+16
This patch sets the filter policy to a default value 0x01 during LE auto connection if the destination address is not set. And it updates the destination address once the LE connection complete event is recieved during LE auto connection. And for it checks valid destination address before cancelling LE connection when connection timeout occurs. Change-Id: I9877556c0b0ab4826f5f4934ead4d85b7837036d Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> [squash patches, LE connection policy, set dest address and check dest address before cancelling connection] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Get Advertising TX powerSudha Bheemanna2-0/+38
This patch adds MGMT command to read the advertising TX power. Change-Id: Ide9e5d332f034928d2eae2cbd68a025a0d42be1b Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Set the link for SCO connectionSudha Bheemanna2-0/+62
This patch sets the link policy for SCO/eSCO connection. Change-Id: I71caef5a3887f73a10329b6886c8cf52b80e8d37 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> [add link policy setting in sco connection] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Add MGMT command to set SCO settingsSudha Bheemanna7-0/+317
Added code to set sco settings. Change-Id: I37aa572436241b06e00d1e9e75964aac747eeba5 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> [remove sco link policy part] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Add multiple LE advertise state change eventSudha Bheemanna2-0/+33
This patch adds code for providing multiple LE advertisement state changed event to upper layer. Change-Id: I58fb8044e74402376ec30b121081edce7c8709d1 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> [divide hci_vendor_mutli_adv_state_change_evt and remove hci event structure from mgmt] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-28Bluetooth: Add LE device found MGMT eventSudha Bheemanna5-0/+97
This patch adds new MGMT event for LE device discovery and allows the handling of all advertisement packets in platform. Change-Id: I1927acb75eff0b60a5899898c6d7a000e1a108ef Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-27Bluetooth: fix vendor ext rssi link alert eventSeung-Woo Kim4-16/+25
This patch fixes style for rssi link alert event from vendor specific group ext. Change-Id: I0e7003e417c5f5a590cce8264caccad515dd3c10 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
2019-06-27Bluetooth: Add H/W TX timeout error MGMT eventSudha Bheemanna5-0/+25
This patch sends the H/W TX timeout error MGMT event if HCI command timeout occurs after sending HCI commands. Change-Id: I5eb593f2fe4d31c404dd94ef582790e47d03b10a Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com> Signed-off-by: Amit Purwar <amit.purwar@samsung.com>