You can use the following command. This will require you to do a bit of data cleansing and verification.
val mydata : Array[List[String]] = myString.split('\n').flatMap(CSVParser.parseLine(_))
After that you can convert it to a RDD
val myRDD : RDD[List[String]] = sparkContext.parallelize(msdata)