Re: [PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-11-09 Thread Greg KH
On Wed, Oct 17, 2018 at 10:20:25AM +0200, Fabien Lahoudere wrote:
> Hi Greg,
> 
> On Mon, 2018-10-15 at 16:01 +0200, Greg KH wrote:
> > On Thu, Oct 11, 2018 at 11:25:03AM +0200, Fabien Lahoudere wrote:
> > > In order to optimize serial communication on imx53 and imx6, we may
> > > need to tweak DMA period and buffer length per period.
> > 
> > Why can you not just automatically determine this information?  What is
> > userspace going to know that the kernel can not just learn now?
> > 
> > Having tunables is nice, but it is even better to not need them at all.
> 
> I agree that it is better to let the kernel do the configuration.

Great!

> However in our case we use several serial communication for different device
> and one of them need to tweak that configuration to get small data with a 
> better
> period. However having this parameter for all serial port implies a bigger 
> number
> of interrupts for others too.

Why can you not dynamically figure this out?  How are you figuring it
out "by hand" today in userspace?

thanks,

greg k-h


Re: [PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-11-09 Thread Greg KH
On Wed, Oct 17, 2018 at 10:20:25AM +0200, Fabien Lahoudere wrote:
> Hi Greg,
> 
> On Mon, 2018-10-15 at 16:01 +0200, Greg KH wrote:
> > On Thu, Oct 11, 2018 at 11:25:03AM +0200, Fabien Lahoudere wrote:
> > > In order to optimize serial communication on imx53 and imx6, we may
> > > need to tweak DMA period and buffer length per period.
> > 
> > Why can you not just automatically determine this information?  What is
> > userspace going to know that the kernel can not just learn now?
> > 
> > Having tunables is nice, but it is even better to not need them at all.
> 
> I agree that it is better to let the kernel do the configuration.

Great!

> However in our case we use several serial communication for different device
> and one of them need to tweak that configuration to get small data with a 
> better
> period. However having this parameter for all serial port implies a bigger 
> number
> of interrupts for others too.

Why can you not dynamically figure this out?  How are you figuring it
out "by hand" today in userspace?

thanks,

greg k-h


Re: [PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-10-17 Thread Fabien Lahoudere
Hi Greg,

On Mon, 2018-10-15 at 16:01 +0200, Greg KH wrote:
> On Thu, Oct 11, 2018 at 11:25:03AM +0200, Fabien Lahoudere wrote:
> > In order to optimize serial communication on imx53 and imx6, we may
> > need to tweak DMA period and buffer length per period.
> 
> Why can you not just automatically determine this information?  What is
> userspace going to know that the kernel can not just learn now?
> 
> Having tunables is nice, but it is even better to not need them at all.

I agree that it is better to let the kernel do the configuration.
However in our case we use several serial communication for different device
and one of them need to tweak that configuration to get small data with a better
period. However having this parameter for all serial port implies a bigger 
number
of interrupts for others too.

> 
> thanks,
> 
> greg k-h
-- 
Fabien


Re: [PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-10-17 Thread Fabien Lahoudere
Hi Greg,

On Mon, 2018-10-15 at 16:01 +0200, Greg KH wrote:
> On Thu, Oct 11, 2018 at 11:25:03AM +0200, Fabien Lahoudere wrote:
> > In order to optimize serial communication on imx53 and imx6, we may
> > need to tweak DMA period and buffer length per period.
> 
> Why can you not just automatically determine this information?  What is
> userspace going to know that the kernel can not just learn now?
> 
> Having tunables is nice, but it is even better to not need them at all.

I agree that it is better to let the kernel do the configuration.
However in our case we use several serial communication for different device
and one of them need to tweak that configuration to get small data with a better
period. However having this parameter for all serial port implies a bigger 
number
of interrupts for others too.

> 
> thanks,
> 
> greg k-h
-- 
Fabien


Re: [PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-10-15 Thread Greg KH
On Thu, Oct 11, 2018 at 11:25:03AM +0200, Fabien Lahoudere wrote:
> In order to optimize serial communication on imx53 and imx6, we may
> need to tweak DMA period and buffer length per period.

Why can you not just automatically determine this information?  What is
userspace going to know that the kernel can not just learn now?

Having tunables is nice, but it is even better to not need them at all.

thanks,

greg k-h


Re: [PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-10-15 Thread Greg KH
On Thu, Oct 11, 2018 at 11:25:03AM +0200, Fabien Lahoudere wrote:
> In order to optimize serial communication on imx53 and imx6, we may
> need to tweak DMA period and buffer length per period.

Why can you not just automatically determine this information?  What is
userspace going to know that the kernel can not just learn now?

Having tunables is nice, but it is even better to not need them at all.

thanks,

greg k-h


[PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-10-11 Thread Fabien Lahoudere
In order to optimize serial communication on imx53 and imx6, we may
need to tweak DMA period and buffer length per period.
This patch add sysfs attributes to configure thoses values before
initialising DMA.

For example, you can access values by reading/writing:

/sys/class/tty/ttymxc*/dma_buffer_size
/sys/class/tty/ttymxc*/dma_buffer_count

Signed-off-by: Fabien Lahoudere 
---
Changes since v2:
  - Improve attribute documentation
  - Fix various typo
  - Remove useless debug message
  - Clean code

 Documentation/ABI/stable/sysfs-driver-imx-uart | 13 
 drivers/tty/serial/imx.c   | 89 --
 2 files changed, 97 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/ABI/stable/sysfs-driver-imx-uart

diff --git a/Documentation/ABI/stable/sysfs-driver-imx-uart 
b/Documentation/ABI/stable/sysfs-driver-imx-uart
new file mode 100644
index 000..0a55fcf
--- /dev/null
+++ b/Documentation/ABI/stable/sysfs-driver-imx-uart
@@ -0,0 +1,13 @@
+What:  /sys/class/tty/ttymxc*/dma_buffer_count
+Date:  October 2018
+Contact:   Fabien Lahoudere 
+Description:   imx serial use dma buffer for rx communication. The size of this
+   buffer is splited in several chunk. The number of chunk is
+   determined by the field rx_periods (in struct imx_uart). This
+   attribute allows to modify rx_periods.
+
+What:  /sys/class/tty/ttymxc*/dma_buffer_size
+Date:  October 2018
+Contact:   Fabien Lahoudere 
+Description:   Field rx_period_length (in struct imx_uart) allows us to
+   determine the size of each chunk of rx DMA buffer.
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index d4e051b..9622492 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -220,6 +220,8 @@ struct imx_port {
struct scatterlist  rx_sgl, tx_sgl[2];
void*rx_buf;
struct circ_buf rx_ring;
+   unsigned intrx_buf_size;
+   unsigned intrx_period_length;
unsigned intrx_periods;
dma_cookie_trx_cookie;
unsigned inttx_bytes;
@@ -1025,8 +1027,6 @@ static void imx_uart_timeout(struct timer_list *t)
}
 }
 
-#define RX_BUF_SIZE(PAGE_SIZE)
-
 /*
  * There are two kinds of RX DMA interrupts(such as in the MX6Q):
  *   [1] the RX DMA buffer is full.
@@ -1121,9 +1121,8 @@ static int imx_uart_start_rx_dma(struct imx_port *sport)
 
sport->rx_ring.head = 0;
sport->rx_ring.tail = 0;
-   sport->rx_periods = RX_DMA_PERIODS;
 
-   sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
+   sg_init_one(sgl, sport->rx_buf, sport->rx_buf_size);
ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
if (ret == 0) {
dev_err(dev, "DMA mapping error for RX.\n");
@@ -1241,7 +1240,8 @@ static int imx_uart_dma_init(struct imx_port *sport)
goto err;
}
 
-   sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
+   sport->rx_buf_size = sport->rx_period_length * sport->rx_periods;
+   sport->rx_buf = kzalloc(sport->rx_buf_size, GFP_KERNEL);
if (!sport->rx_buf) {
ret = -ENOMEM;
goto err;
@@ -1702,6 +1702,82 @@ static const char *imx_uart_type(struct uart_port *port)
return sport->port.type == PORT_IMX ? "IMX" : NULL;
 }
 
+
+static ssize_t dma_buffer_size_store(struct device *dev,
+struct device_attribute *attr,
+const char *buf, size_t count)
+{
+   unsigned int plen;
+   int ret;
+   struct device *port_device = dev->parent;
+   struct imx_port *sport = dev_get_drvdata(port_device);
+
+   if (sport->dma_chan_rx) {
+   dev_warn(dev, "DMA channel is not initialized\n");
+   return -EBUSY;
+   }
+   ret = kstrtou32(buf, 0, );
+   if (ret == 0) {
+   sport->rx_period_length = plen;
+   ret = count;
+   }
+   return ret;
+}
+
+static ssize_t dma_buffer_size_show(struct device *dev,
+   struct device_attribute *attr,
+   char *buf)
+{
+   struct device *port_device = dev->parent;
+   struct imx_port *sport = dev_get_drvdata(port_device);
+
+   return sprintf(buf, "%u\n", sport->rx_period_length);
+}
+
+static DEVICE_ATTR_RW(dma_buffer_size);
+
+static ssize_t dma_buffer_count_store(struct device *dev,
+ struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+   unsigned int periods;
+   int ret;
+   struct device *port_device = dev->parent;
+   struct imx_port *sport = dev_get_drvdata(port_device);
+
+   if (sport->dma_chan_rx) {
+   dev_warn(dev, "DMA channel is not initialized\n");
+   

[PATCH v3 1/1] serial: imx - Add dma buffer confugration via sysfs

2018-10-11 Thread Fabien Lahoudere
In order to optimize serial communication on imx53 and imx6, we may
need to tweak DMA period and buffer length per period.
This patch add sysfs attributes to configure thoses values before
initialising DMA.

For example, you can access values by reading/writing:

/sys/class/tty/ttymxc*/dma_buffer_size
/sys/class/tty/ttymxc*/dma_buffer_count

Signed-off-by: Fabien Lahoudere 
---
Changes since v2:
  - Improve attribute documentation
  - Fix various typo
  - Remove useless debug message
  - Clean code

 Documentation/ABI/stable/sysfs-driver-imx-uart | 13 
 drivers/tty/serial/imx.c   | 89 --
 2 files changed, 97 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/ABI/stable/sysfs-driver-imx-uart

diff --git a/Documentation/ABI/stable/sysfs-driver-imx-uart 
b/Documentation/ABI/stable/sysfs-driver-imx-uart
new file mode 100644
index 000..0a55fcf
--- /dev/null
+++ b/Documentation/ABI/stable/sysfs-driver-imx-uart
@@ -0,0 +1,13 @@
+What:  /sys/class/tty/ttymxc*/dma_buffer_count
+Date:  October 2018
+Contact:   Fabien Lahoudere 
+Description:   imx serial use dma buffer for rx communication. The size of this
+   buffer is splited in several chunk. The number of chunk is
+   determined by the field rx_periods (in struct imx_uart). This
+   attribute allows to modify rx_periods.
+
+What:  /sys/class/tty/ttymxc*/dma_buffer_size
+Date:  October 2018
+Contact:   Fabien Lahoudere 
+Description:   Field rx_period_length (in struct imx_uart) allows us to
+   determine the size of each chunk of rx DMA buffer.
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index d4e051b..9622492 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -220,6 +220,8 @@ struct imx_port {
struct scatterlist  rx_sgl, tx_sgl[2];
void*rx_buf;
struct circ_buf rx_ring;
+   unsigned intrx_buf_size;
+   unsigned intrx_period_length;
unsigned intrx_periods;
dma_cookie_trx_cookie;
unsigned inttx_bytes;
@@ -1025,8 +1027,6 @@ static void imx_uart_timeout(struct timer_list *t)
}
 }
 
-#define RX_BUF_SIZE(PAGE_SIZE)
-
 /*
  * There are two kinds of RX DMA interrupts(such as in the MX6Q):
  *   [1] the RX DMA buffer is full.
@@ -1121,9 +1121,8 @@ static int imx_uart_start_rx_dma(struct imx_port *sport)
 
sport->rx_ring.head = 0;
sport->rx_ring.tail = 0;
-   sport->rx_periods = RX_DMA_PERIODS;
 
-   sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
+   sg_init_one(sgl, sport->rx_buf, sport->rx_buf_size);
ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
if (ret == 0) {
dev_err(dev, "DMA mapping error for RX.\n");
@@ -1241,7 +1240,8 @@ static int imx_uart_dma_init(struct imx_port *sport)
goto err;
}
 
-   sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
+   sport->rx_buf_size = sport->rx_period_length * sport->rx_periods;
+   sport->rx_buf = kzalloc(sport->rx_buf_size, GFP_KERNEL);
if (!sport->rx_buf) {
ret = -ENOMEM;
goto err;
@@ -1702,6 +1702,82 @@ static const char *imx_uart_type(struct uart_port *port)
return sport->port.type == PORT_IMX ? "IMX" : NULL;
 }
 
+
+static ssize_t dma_buffer_size_store(struct device *dev,
+struct device_attribute *attr,
+const char *buf, size_t count)
+{
+   unsigned int plen;
+   int ret;
+   struct device *port_device = dev->parent;
+   struct imx_port *sport = dev_get_drvdata(port_device);
+
+   if (sport->dma_chan_rx) {
+   dev_warn(dev, "DMA channel is not initialized\n");
+   return -EBUSY;
+   }
+   ret = kstrtou32(buf, 0, );
+   if (ret == 0) {
+   sport->rx_period_length = plen;
+   ret = count;
+   }
+   return ret;
+}
+
+static ssize_t dma_buffer_size_show(struct device *dev,
+   struct device_attribute *attr,
+   char *buf)
+{
+   struct device *port_device = dev->parent;
+   struct imx_port *sport = dev_get_drvdata(port_device);
+
+   return sprintf(buf, "%u\n", sport->rx_period_length);
+}
+
+static DEVICE_ATTR_RW(dma_buffer_size);
+
+static ssize_t dma_buffer_count_store(struct device *dev,
+ struct device_attribute *attr,
+ const char *buf, size_t count)
+{
+   unsigned int periods;
+   int ret;
+   struct device *port_device = dev->parent;
+   struct imx_port *sport = dev_get_drvdata(port_device);
+
+   if (sport->dma_chan_rx) {
+   dev_warn(dev, "DMA channel is not initialized\n");
+